Skip to content

Instantly share code, notes, and snippets.

@gotnix
Last active January 26, 2016 07:28
Show Gist options
  • Select an option

  • Save gotnix/5c5422ae3f26ad48a433 to your computer and use it in GitHub Desktop.

Select an option

Save gotnix/5c5422ae3f26ad48a433 to your computer and use it in GitHub Desktop.
Setup salt-minion via salt-ssh
{% if grains['os'] in ('RedHat', 'CentOS') %}
salt_minion:
cmd.run:
{% if grains['osmajorrelease']|int == 7 %}
- name: rpm --import 'https://repo.saltstack.com/yum/redhat/7/x86_64/latest/SALTSTACK-GPG-KEY.pub'
{% elif grains['osmajorrelease']|int == 6 %}
- name: rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'
{% elif grains['osmajorrelease']|int == 5 %}
- name: rpm --import 'https://repo.saltstack.com/yum/redhat/5/x86_64/latest/SALTSTACK-EL5-GPG-KEY.pub'
{% endif %}
- unless: rpm -q gpg-pubkey --qf '%{NAME}-%{VERSION}-%{RELEASE}\t%{SUMMARY}\n' | grep 'SaltStack Packaging Team'
pkgrepo.managed:
- name: saltstack
- require:
- cmd: salt_minion
- require_in:
- pkg: salt_minion
{% if grains['osmajorrelease'] == "7" or grains['osmajorrelease'] == "6" %}
- humanname: SaltStack repo for RHEL/CentOS $releasever
- baseurl: https://repo.saltstack.com/yum/redhat/$releasever/$basearch/latest
- gpgcheck: 1
- gpgkey: https://repo.saltstack.com/yum/redhat/$releasever/$basearch/latest/SALTSTACK-GPG-KEY.pub
- skip_if_unavailable: True
- enabled: 1
{% elif grains['osmajorrelease'] == "5" %}
- humanname: SaltStack repo for RHEL/CentOS $releasever
- baseurl: https://repo.saltstack.com/yum/redhat/$releasever/$basearch/latest
- gpgcheck: 1
- gpgkey: https://repo.saltstack.com/yum/redhat/$releasever/$basearch/latest/SALTSTACK-EL5-GPG-KEY.pub
- skip_if_unavailable: True
- enabled: 1
- require_in:
- pkg: salt_minion
{% endif %}
pkg.installed:
- name: salt-minion
- pkgs:
- PyYAML
- libyaml
- python-babel
- python-backports
- python-backports-ssl_match_hostname
- python-chardet
- python-crypto
- python-futures
- python-jinja2
- python-markupsafe
- python-msgpack
- python-requests
- python-six
- python-tornado
- python-urllib3
- python-zmq
- salt
- salt-minion
- zeromq
- fromrepo: saltstack
- require:
- pkgrepo: salt_minion
- unless:
- rpm -q salt-minion
- test -f /usr/bin/salt-minion
file.managed:
- name: /etc/salt/minion
- source: salt://files/saltstack/minion
- user: root
- group: root
- mode: 0644
- template: jinja
- defaults:
saltServer01: {{ pillar['saltMasters']['saltMaster01'] }}
- require:
- pkg: salt_minion
service.running:
- name: salt-minion
- enable: True
- reload: True
- watch:
- pkg: salt_minion
- file: salt_minion
{% endif %}
[root@i-8z1xfm80:/srv/salt] [Tue Jan 26 - 14:22:37]
1154 => # salt-ssh 'staging-sap-1' state.sls salt-minion test=True
staging-sap-1:
----------
ID: salt_minion
Function: cmd.run
Name: rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'
Result: True
Comment: unless execution succeeded
Started: 14:23:08.238450
Duration: 47.257 ms
Changes:
----------
ID: salt_minion
Function: pkgrepo.managed
Name: saltstack
Result: None
Comment: Package repo 'saltstack' will be configured. This may cause pkg states to behave differently than stated if this action is repeated without t
est=True, due to the differences in the configured repositories.
Started: 14:23:08.372133
Duration: 8.884 ms
Changes:
----------
ID: salt_minion
Function: pkg.installed
Name: salt-minion
Result: False
Comment: The following package(s) were not found, and no possible matches were found in the package db: PyYAML, libyaml, python-babel, python-backport
s, python-backports-ssl_match_hostname, python-chardet, python-crypto, python-futures, python-jinja2, python-markupsafe, python-msgpack, python-requests, p
ython-six, python-tornado, python-urllib3, python-zmq, salt, salt-minion, zeromq
Started: 14:23:08.811662
Duration: 1746.459 ms
Changes:
----------
ID: salt_minion
Function: file.managed
Name: /etc/salt/minion
Result: False
Comment: One or more requisite failed: salt-minion.salt_minion
Started:
Duration:
Changes:
----------
ID: salt_minion
Function: service.running
Name: salt-minion
Result: False
Comment: One or more requisite failed: salt-minion.salt_minion
Started:
Duration:
Changes:
Summary for staging-sap-1
------------
Succeeded: 2 (unchanged=1)
Failed: 3
------------
Total states run: 5
Total run time: 1.803 s
[root@i-8z1xfm80:/srv/salt] [Tue Jan 26 - 14:23:11]
1155 => # salt-ssh 'staging-sap-1' state.sls salt-minion test=False
staging-sap-1:
----------
ID: salt_minion
Function: cmd.run
Name: rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'
Result: True
Comment: unless execution succeeded
Started: 14:23:25.125305
Duration: 50.057 ms
Changes:
----------
ID: salt_minion
Function: pkgrepo.managed
Name: saltstack
Result: True
Comment: Configured package repo 'saltstack'
Started: 14:23:25.252269
Duration: 59.501 ms
Changes:
----------
repo:
saltstack
----------
ID: salt_minion
Function: pkg.installed
Name: salt-minion
Result: True
Comment: 19 targeted packages were installed/updated.
Started: 14:23:25.695890
Duration: 80339.42 ms
Changes:
----------
PyYAML:
----------
new:
3.11-1.el6
old:
libyaml:
----------
new:
0.1.3-4.el6
old:
python-babel:
----------
new:
0.9.4-5.1.el6
old:
python-backports:
----------
new:
1.0-5.el6
old:
python-backports-ssl_match_hostname:
----------
new:
3.4.0.2-2.el6
old:
python-chardet:
----------
new:
2.2.1-1.el6
old:
python-crypto:
----------
new:
2.6.1-2.el6
old:
python-futures:
----------
new:
3.0.3-1.el6
old:
python-jinja2:
----------
new:
2.2.1-2.el6
old:
python-markupsafe:
----------
new:
0.11-10.el6
old:
python-msgpack:
----------
new:
0.4.6-1.el6
old:
python-requests:
----------
new:
1.1.0-3.el6
old:
python-six:
----------
new:
1.9.0-2.el6
old:
python-tornado:
----------
new:
4.2.1-1.el6
old:
python-urllib3:
----------
new:
1.10.2-1.el6
old:
python-zmq:
----------
new:
14.5.0-2.el6
old:
salt:
----------
new:
2015.8.3-1.el6
old:
salt-minion:
----------
new:
2015.8.3-1.el6
old:
zeromq:
----------
new:
4.0.5-4.el6
old:
----------
ID: salt_minion
Function: file.managed
Name: /etc/salt/minion
Result: True
Comment: File /etc/salt/minion updated
Started: 14:24:46.055198
Duration: 33.775 ms
Changes:
----------
diff:
---
+++
@@ -14,6 +14,8 @@
# Set the location of the salt master server. If the master server cannot be
# resolved, then the minion will fail to start.
#master: salt
+master:
+ - 192.168.110.14
# If multiple masters are specified in the 'master' setting, the default behavior
# is to always try to connect to them in the order they are listed. If random_master is
@@ -46,6 +48,8 @@
# Set the port used by the master reply and authentication server.
#master_port: 4506
+
+#transport: raet
# The user to run salt.
#user: root
mode:
0644
----------
ID: salt_minion
Function: service.running
Name: salt-minion
Result: True
Comment: Service salt-minion is already enabled, and is running
Started: 14:24:46.091611
Duration: 755.491 ms
Changes:
----------
salt-minion:
True
Summary for staging-sap-1
------------
Succeeded: 5 (changed=4)
Failed: 0
------------
Total states run: 5
Total run time: 81.238 s
2016-01-21 16:10:34,034 [salt.config ][DEBUG ][22615] Reading configuration from /tmp/.root_214a90_salt/minion
2016-01-21 16:10:34,062 [salt.loader ][TRACE ][22615] Loading core.hwaddr_interfaces grain
2016-01-21 16:10:34,070 [salt.loader ][TRACE ][22615] Loading core.hostname grain
2016-01-21 16:10:34,071 [salt.loader ][TRACE ][22615] Loading core.get_master grain
2016-01-21 16:10:34,071 [salt.loader ][TRACE ][22615] Loading core.pythonversion grain
2016-01-21 16:10:34,071 [salt.loader ][TRACE ][22615] Loading core.path grain
2016-01-21 16:10:34,071 [salt.loader ][TRACE ][22615] Loading core.get_server_id grain
2016-01-21 16:10:34,072 [salt.loader ][TRACE ][22615] Loading core.ip6 grain
2016-01-21 16:10:34,080 [salt.loader ][TRACE ][22615] Loading core.ip4 grain
2016-01-21 16:10:34,088 [salt.loader ][TRACE ][22615] Loading core.saltversion grain
2016-01-21 16:10:34,088 [salt.loader ][TRACE ][22615] Loading core.saltpath grain
2016-01-21 16:10:34,089 [salt.loader ][TRACE ][22615] Loading core.pythonexecutable grain
2016-01-21 16:10:34,089 [salt.loader ][TRACE ][22615] Loading core.fqdn_ip4 grain
2016-01-21 16:10:34,089 [salt.loader ][TRACE ][22615] Loading core.fqdn_ip6 grain
2016-01-21 16:10:34,090 [salt.loader ][TRACE ][22615] Loading core.ip6_interfaces grain
2016-01-21 16:10:34,090 [salt.loader ][TRACE ][22615] Loading core.ip4_interfaces grain
2016-01-21 16:10:34,091 [salt.loader ][TRACE ][22615] Loading core.append_domain grain
2016-01-21 16:10:34,091 [salt.loader ][TRACE ][22615] Loading core.os_data grain
2016-01-21 16:10:34,150 [salt.utils ][TRACE ][22615] 'virt-what' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,150 [salt.loaded.int.grains.core][DEBUG ][22615] Please install 'virt-what' to improve results of the 'virtual' grain.
2016-01-21 16:10:34,151 [salt.utils ][TRACE ][22615] 'systemd-detect-virt' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,151 [salt.utils ][TRACE ][22615] 'virt-what' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,154 [salt.loader ][TRACE ][22615] Loading core.zmqversion grain
2016-01-21 16:10:34,155 [salt.loader ][TRACE ][22615] Loading core.saltversioninfo grain
2016-01-21 16:10:34,155 [salt.loader ][TRACE ][22615] Loading core.pythonpath grain
2016-01-21 16:10:34,155 [salt.loader ][TRACE ][22615] Loading core.id_ grain
2016-01-21 16:10:34,155 [salt.loader ][TRACE ][22615] Loading core.locale_info grain
2016-01-21 16:10:34,155 [salt.loader ][TRACE ][22615] Loading core.get_machine_id grain
2016-01-21 16:10:34,156 [salt.loader ][TRACE ][22615] Loading core.ip_interfaces grain
2016-01-21 16:10:34,156 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram0 does not report itself as an SSD
2016-01-21 16:10:34,156 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram1 does not report itself as an SSD
2016-01-21 16:10:34,157 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram2 does not report itself as an SSD
2016-01-21 16:10:34,157 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram3 does not report itself as an SSD
2016-01-21 16:10:34,157 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram4 does not report itself as an SSD
2016-01-21 16:10:34,157 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram5 does not report itself as an SSD
2016-01-21 16:10:34,157 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram6 does not report itself as an SSD
2016-01-21 16:10:34,158 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram7 does not report itself as an SSD
2016-01-21 16:10:34,158 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram8 does not report itself as an SSD
2016-01-21 16:10:34,158 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram9 does not report itself as an SSD
2016-01-21 16:10:34,158 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram10 does not report itself as an SSD
2016-01-21 16:10:34,158 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram11 does not report itself as an SSD
2016-01-21 16:10:34,158 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram12 does not report itself as an SSD
2016-01-21 16:10:34,159 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram13 does not report itself as an SSD
2016-01-21 16:10:34,159 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram14 does not report itself as an SSD
2016-01-21 16:10:34,159 [salt.loaded.int.grains.disks][TRACE ][22615] Device ram15 does not report itself as an SSD
2016-01-21 16:10:34,159 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop0 does not report itself as an SSD
2016-01-21 16:10:34,159 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop1 does not report itself as an SSD
2016-01-21 16:10:34,160 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop2 does not report itself as an SSD
2016-01-21 16:10:34,160 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop3 does not report itself as an SSD
2016-01-21 16:10:34,160 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop4 does not report itself as an SSD
2016-01-21 16:10:34,160 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop5 does not report itself as an SSD
2016-01-21 16:10:34,160 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop6 does not report itself as an SSD
2016-01-21 16:10:34,160 [salt.loaded.int.grains.disks][TRACE ][22615] Device loop7 does not report itself as an SSD
2016-01-21 16:10:34,161 [salt.loaded.int.grains.disks][TRACE ][22615] Device sda does not report itself as an SSD
2016-01-21 16:10:34,161 [salt.loaded.int.grains.disks][TRACE ][22615] Device sdb does not report itself as an SSD
2016-01-21 16:10:34,171 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded jinja.render
2016-01-21 16:10:34,172 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded yaml.render
2016-01-21 16:10:34,187 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded jinja.render
2016-01-21 16:10:34,188 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded yaml.render
2016-01-21 16:10:34,193 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded state.pkg
2016-01-21 16:10:34,216 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded jinja.render
2016-01-21 16:10:34,216 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded yaml.render
2016-01-21 16:10:34,217 [salt.state ][INFO ][22615] Loading fresh modules for state activity
2016-01-21 16:10:34,229 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded jinja.render
2016-01-21 16:10:34,230 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded yaml.render
2016-01-21 16:10:34,232 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded config.option
2016-01-21 16:10:34,233 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded cmd.run
2016-01-21 16:10:34,233 [salt.state ][INFO ][22615] Running state [rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'] at time 16:10:34.232734
2016-01-21 16:10:34,233 [salt.state ][INFO ][22615] Executing state cmd.run for rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'
2016-01-21 16:10:34,234 [salt.loader ][TRACE ][22615] Loaded cmdmod as virtual cmd
2016-01-21 16:10:34,234 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded cmd.retcode
2016-01-21 16:10:34,235 [salt.loaded.int.module.cmdmod][INFO ][22615] Executing command "rpm -q gpg-pubkey --qf '%{NAME}-%{VERSION}-%{RELEASE}\\t%{SUMMARY}\\n' | grep 'SaltStack Packaging Team'" in directory '/root'
2016-01-21 16:10:34,272 [salt.loaded.int.module.cmdmod][DEBUG ][22615] output: gpg-pubkey-de57bfbe-53a9be98 gpg(SaltStack Packaging Team <packaging@saltstack.com>)
2016-01-21 16:10:34,273 [salt.loaded.int.states.cmd][DEBUG ][22615] Last command return code: 0
2016-01-21 16:10:34,273 [salt.state ][INFO ][22615] unless execution succeeded
2016-01-21 16:10:34,273 [salt.state ][INFO ][22615] Completed state [rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'] at time 16:10:34.273210
2016-01-21 16:10:34,347 [salt.loader ][TRACE ][22615] Loaded yumpkg as virtual pkg
2016-01-21 16:10:34,347 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded pkg.mod_repo
2016-01-21 16:10:34,347 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded pkgrepo.managed
2016-01-21 16:10:34,348 [salt.state ][INFO ][22615] Running state [saltstack] at time 16:10:34.347775
2016-01-21 16:10:34,348 [salt.state ][INFO ][22615] Executing state pkgrepo.managed for saltstack
2016-01-21 16:10:34,354 [salt.loaded.int.module.yumpkg][DEBUG ][22615] Searching for repos in ['/etc/yum/repos.d', '/etc/yum.repos.d']
2016-01-21 16:10:34,355 [salt.state ][INFO ][22615] Package repo 'saltstack' will be configured. This may cause pkg states to behave differently than stated if this action is repeated without test=True, due to the differences in the configured repositories.
2016-01-21 16:10:34,356 [salt.state ][INFO ][22615] Completed state [saltstack] at time 16:10:34.355596
2016-01-21 16:10:34,357 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded pkg.installed
2016-01-21 16:10:34,361 [salt.loader ][DEBUG ][22615] Failed to import module win_pkg:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/modules/win_pkg.py", line 31, in <module>
import msgpack_pure as msgpack
ImportError: No module named msgpack_pure
2016-01-21 16:10:34,363 [salt.loader ][TRACE ][22615] Loaded localemod as virtual locale
2016-01-21 16:10:34,364 [salt.utils ][TRACE ][22615] 'semanage' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,366 [salt.loader ][TRACE ][22615] Loaded rh_service as virtual service
2016-01-21 16:10:34,367 [salt.loader ][DEBUG ][22615] Error loading module.ifttt: IFTTT Secret Key Unavailable, not loading.
2016-01-21 16:10:34,368 [salt.utils ][TRACE ][22615] 'mock' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,369 [salt.utils ][TRACE ][22615] 'localectl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,369 [salt.utils ][TRACE ][22615] 'cabal' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,371 [salt.utils ][TRACE ][22615] 'znc' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,372 [salt.utils ][TRACE ][22615] 'varnishd' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,377 [salt.loader ][TRACE ][22615] Loaded groupadd as virtual group
2016-01-21 16:10:34,378 [salt.utils ][TRACE ][22615] 'sysbench' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,380 [salt.utils ][TRACE ][22615] 'psql' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,381 [salt.loader ][DEBUG ][22615] Error loading module.ipmi: No module named pyghmi.ipmi
2016-01-21 16:10:34,382 [salt.loader ][TRACE ][22615] Loaded linux_sysctl as virtual sysctl
2016-01-21 16:10:34,386 [salt.loader ][DEBUG ][22615] Failed to import module win_repo:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/modules/win_repo.py", line 25, in <module>
from salt.runners.winrepo import (
File "/tmp/.root_214a90_salt/salt/runners/winrepo.py", line 18, in <module>
import msgpack_pure as msgpack # pylint: disable=import-error
ImportError: No module named msgpack_pure
2016-01-21 16:10:34,387 [salt.utils ][TRACE ][22615] 'cpan' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,407 [salt.utils ][TRACE ][22615] 'ipvsadm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,410 [salt.utils ][TRACE ][22615] 'rabbitmqctl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,415 [salt.utils ][TRACE ][22615] 'zpool' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,418 [salt.utils ][TRACE ][22615] 'nginx' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,428 [salt.utils ][TRACE ][22615] 'qemu-nbd' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,432 [salt.utils ][TRACE ][22615] 'mfsgetgoal' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,434 [salt.loader ][DEBUG ][22615] Error loading module.tls: PyOpenSSL version 0.10 or later must be installed before this module can be used.
2016-01-21 16:10:34,436 [salt.loader ][DEBUG ][22615] Failed to import module glusterfs:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/modules/glusterfs.py", line 18, in <module>
import salt.utils.cloud as suc
File "/tmp/.root_214a90_salt/salt/utils/cloud.py", line 21, in <module>
import msgpack
ImportError: No module named msgpack
2016-01-21 16:10:34,440 [salt.loader ][DEBUG ][22615] Error loading module.victorops: No VictorOps api key found.
2016-01-21 16:10:34,441 [salt.utils ][TRACE ][22615] 'tuned-adm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,447 [salt.loader ][TRACE ][22615] Loaded linux_acl as virtual acl
2016-01-21 16:10:34,451 [salt.loader ][DEBUG ][22615] Error loading module.x509: Could not load x509 module, m2crypto unavailable
2016-01-21 16:10:34,456 [salt.utils ][TRACE ][22615] 'system_profiler' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,459 [salt.utils ][TRACE ][22615] 'uwsgi' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,463 [salt.loader ][DEBUG ][22615] Error loading module.dockerng: Docker module could not get imported
2016-01-21 16:10:34,474 [salt.utils ][TRACE ][22615] 'sensors' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,475 [salt.utils ][TRACE ][22615] 'solr' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,476 [salt.utils ][TRACE ][22615] 'apache-solr' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,491 [salt.utils ][TRACE ][22615] 'guestmount' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,494 [salt.utils ][TRACE ][22615] 'qemu-img' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,495 [salt.utils ][TRACE ][22615] 'npm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,495 [salt.loader ][DEBUG ][22615] Error loading module.npm: npm execution module could not be loaded because the npm binary could not be located
2016-01-21 16:10:34,499 [salt.utils ][TRACE ][22615] 'chef-client' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,501 [salt.loader ][TRACE ][22615] Loaded parted as virtual partition
2016-01-21 16:10:34,502 [salt.loader ][DEBUG ][22615] Error loading module.nacl: libnacl import error, perhaps missing python libnacl package
2016-01-21 16:10:34,504 [salt.utils ][TRACE ][22615] 'apachectl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,508 [salt.loader ][TRACE ][22615] Loaded sysmod as virtual sys
2016-01-21 16:10:34,509 [salt.loader ][TRACE ][22615] Loaded rpm as virtual lowpkg
2016-01-21 16:10:34,513 [salt.utils ][TRACE ][22615] 'git' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,514 [salt.loader ][TRACE ][22615] Loaded zcbuildout as virtual buildout
2016-01-21 16:10:34,517 [salt.utils.decorators][TRACE ][22615] Depends decorator instantiated with dep list of ('non_existantmodulename',)
2016-01-21 16:10:34,567 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,569 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,571 [salt.loader ][ERROR ][22615] Exception raised when processing __virtual__ function for nova. Module will not be loaded global name 'novaclient' is not defined
2016-01-21 16:10:34,571 [salt.loader ][WARNING ][22615] salt.loaded.int.module.nova.__virtual__() is wrongly returning `None`. It should either return `True`, `False` or a new name. If you're the developer of the module 'nova', please fix this.
2016-01-21 16:10:34,571 [salt.loader ][DEBUG ][22615] Error loading module.nova: Exception raised when processing __virtual__ function for nova. Module will not be loaded global name 'novaclient' is not defined
2016-01-21 16:10:34,572 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,573 [salt.utils ][TRACE ][22615] 'nft' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,574 [salt.utils ][TRACE ][22615] 'traffic_line' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,574 [salt.utils ][TRACE ][22615] 'traffic_line' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,575 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,575 [salt.utils ][TRACE ][22615] 'svn' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,576 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,577 [salt.loader ][TRACE ][22615] Loaded etcd_mod as virtual etcd
2016-01-21 16:10:34,577 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,578 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,579 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,580 [salt.utils ][TRACE ][22615] 'kadmin' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,586 [salt.utils ][TRACE ][22615] 'apachectl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,587 [salt.utils ][TRACE ][22615] 'htpasswd' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,587 [salt.utils ][TRACE ][22615] 'bower' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,588 [salt.loader ][TRACE ][22615] Loaded useradd as virtual user
2016-01-21 16:10:34,588 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,588 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,589 [salt.utils ][TRACE ][22615] 'port' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,590 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,590 [salt.utils ][TRACE ][22615] 'pecl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,591 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,591 [salt.loader ][TRACE ][22615] Loaded grub_legacy as virtual grub
2016-01-21 16:10:34,591 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,592 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,594 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,595 [salt.loader ][TRACE ][22615] Loaded rh_ip as virtual ip
2016-01-21 16:10:34,595 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,596 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,597 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,598 [salt.utils ][TRACE ][22615] 'firewall-cmd' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,598 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,606 [salt.loader ][TRACE ][22615] Loaded ini_manage as virtual ini
2016-01-21 16:10:34,606 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,608 [salt.utils ][TRACE ][22615] 'hponcfg' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,610 [salt.utils ][TRACE ][22615] 'racadm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,613 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,614 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,615 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,616 [salt.loader ][DEBUG ][22615] Failed to import module seed:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/modules/seed.py", line 17, in <module>
import salt.utils.cloud
File "/tmp/.root_214a90_salt/salt/utils/cloud.py", line 21, in <module>
import msgpack
ImportError: No module named msgpack
2016-01-21 16:10:34,617 [salt.utils ][TRACE ][22615] 'at' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,619 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,620 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,620 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,621 [salt.loader ][TRACE ][22615] Loaded pushover_notify as virtual pushover
2016-01-21 16:10:34,621 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,622 [salt.utils ][TRACE ][22615] 'svok' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,624 [salt.loader ][TRACE ][22615] Loaded slack_notify as virtual slack
2016-01-21 16:10:34,624 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,625 [salt.loader ][DEBUG ][22615] Error loading module.uptime: uptime module needs the python requests module to work
2016-01-21 16:10:34,627 [salt.utils ][TRACE ][22615] 'virtualenv' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,627 [salt.utils ][TRACE ][22615] 'virtualenv-2.7' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,628 [salt.utils ][TRACE ][22615] 'virtualenv-2.6' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,629 [salt.utils ][TRACE ][22615] 'virtualenv2' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,629 [salt.loader ][TRACE ][22615] Loaded virtualenv_mod as virtual virtualenv
2016-01-21 16:10:34,630 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,631 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,633 [salt.utils ][TRACE ][22615] 'mdadm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,634 [salt.loader ][TRACE ][22615] Loaded djangomod as virtual django
2016-01-21 16:10:34,634 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,635 [salt.utils ][TRACE ][22615] 'hadoop' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,637 [salt.utils.decorators][TRACE ][22615] Depends decorator instantiated with dep list of ('zipfile',)
2016-01-21 16:10:34,654 [salt.utils.decorators][TRACE ][22615] Depends decorator instantiated with dep list of ('zipfile',)
2016-01-21 16:10:34,658 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,659 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,659 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,662 [salt.utils ][TRACE ][22615] 'ipset' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,666 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,667 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,668 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,669 [salt.utils ][TRACE ][22615] 'pg_createcluster' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,671 [salt.utils ][TRACE ][22615] 'riak' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,677 [salt.loader ][DEBUG ][22615] Failed to import module pagerduty_util:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/modules/pagerduty_util.py", line 24, in <module>
import requests
ImportError: No module named requests
2016-01-21 16:10:34,678 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,678 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,679 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,680 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,680 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,681 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,682 [salt.utils ][TRACE ][22615] 'sysrc' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,686 [salt.utils ][TRACE ][22615] 'setquota' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,687 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,688 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,688 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,692 [salt.utils ][TRACE ][22615] 'brew' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,694 [salt.loader ][DEBUG ][22615] Failed to import module lxc:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/modules/lxc.py", line 34, in <module>
import salt.utils.cloud
File "/tmp/.root_214a90_salt/salt/utils/cloud.py", line 21, in <module>
import msgpack
ImportError: No module named msgpack
2016-01-21 16:10:34,697 [salt.utils ][TRACE ][22615] 'racadm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,698 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,698 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,698 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,703 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,704 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,704 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,705 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,705 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,705 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,705 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,706 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,706 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,706 [salt.loader ][DEBUG ][22615] Error loading module.boto_cloudwatch: The boto_cloudwatch module cannot be loaded: boto libraries are unavailable.
2016-01-21 16:10:34,707 [salt.utils ][TRACE ][22615] 'facter' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,708 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,708 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,708 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,709 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,710 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,710 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,711 [salt.utils ][TRACE ][22615] 'osqueryi' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,812 [salt.utils ][TRACE ][22615] 'aws' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,813 [salt.utils ][TRACE ][22615] 'monit' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,814 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,815 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,815 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,818 [salt.utils.decorators][TRACE ][22615] Depends decorator instantiated with dep list of ('cx_Oracle',)
2016-01-21 16:10:34,825 [salt.utils.decorators][TRACE ][22615] Depends decorator instantiated with dep list of ('cx_Oracle',)
2016-01-21 16:10:34,827 [salt.utils.decorators][TRACE ][22615] Depends decorator instantiated with dep list of ('cx_Oracle',)
2016-01-21 16:10:34,829 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function run_query at 0x3c748c0> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,829 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function version at 0x3c74c08> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,829 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function client_version at 0x3c74c80> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,829 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,830 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,830 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,831 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function run_query at 0x3c748c0> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,831 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function version at 0x3c74c08> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,831 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function client_version at 0x3c74c80> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,831 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,832 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,832 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,833 [salt.utils ][TRACE ][22615] 'lvm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,833 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function run_query at 0x3c748c0> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,834 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function version at 0x3c74c08> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,834 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.oracle.<function client_version at 0x3c74c80> because dependency (cx_Oracle) is not imported
2016-01-21 16:10:34,834 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function zip_ at 0x3a8e848> because dependency (zipfile) is not imported
2016-01-21 16:10:34,834 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.archive.<function unzip at 0x3ad40c8> because dependency (zipfile) is not imported
2016-01-21 16:10:34,834 [salt.utils.decorators][TRACE ][22615] Unloading salt.loaded.int.module.test.<function missing_func at 0x3655ed8> because dependency (non_existantmodulename) is not imported
2016-01-21 16:10:34,839 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad pkg.ex_mod_init
2016-01-21 16:10:34,840 [salt.state ][INFO ][22615] Running state [salt-minion] at time 16:10:34.839711
2016-01-21 16:10:34,840 [salt.state ][INFO ][22615] Executing state pkg.installed for salt-minion
2016-01-21 16:10:34,845 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad pkg.get_selections
2016-01-21 16:10:34,847 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded selinux.getenforce
2016-01-21 16:10:34,848 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded lvs.get_rules
2016-01-21 16:10:34,849 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded keyboard.get_sys
2016-01-21 16:10:34,852 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded portage_config.get_missing_flags
2016-01-21 16:10:34,854 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded layman.add
2016-01-21 16:10:34,854 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded xmpp.send_msg
2016-01-21 16:10:34,855 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded win_servermanager.install
2016-01-21 16:10:34,855 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded stormpath.create_account
2016-01-21 16:10:34,856 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_iam.role_exists
2016-01-21 16:10:34,858 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded ipset.version
2016-01-21 16:10:34,858 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_sns.exists
2016-01-21 16:10:34,860 [salt.loader ][TRACE ][22615] Loaded pip_state as virtual pip
2016-01-21 16:10:34,861 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_cfn.exists
2016-01-21 16:10:34,861 [salt.loader ][DEBUG ][22615] Error loading states.boto_cfn: Cannot load boto_cfn state: boto_cfn module unavailable
2016-01-21 16:10:34,863 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded ifttt.trigger_event
2016-01-21 16:10:34,869 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad redis.set_key
2016-01-21 16:10:34,871 [salt.utils ][TRACE ][22615] 'cabal' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,872 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded victorops.create_event
2016-01-21 16:10:34,873 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded reg.read_key
2016-01-21 16:10:34,873 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_asg.exists
2016-01-21 16:10:34,874 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded mysql.user_create
2016-01-21 16:10:34,875 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_elb.exists
2016-01-21 16:10:34,876 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded win_dns_client.add_dns
2016-01-21 16:10:34,878 [salt.loader ][TRACE ][22615] Loaded saltmod as virtual salt
2016-01-21 16:10:34,886 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad augeas.execute
2016-01-21 16:10:34,888 [salt.loader ][DEBUG ][22615] Failed to import states glusterfs:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/states/glusterfs.py", line 13, in <module>
import salt.utils.cloud as suc
File "/tmp/.root_214a90_salt/salt/utils/cloud.py", line 21, in <module>
import msgpack
ImportError: No module named msgpack
2016-01-21 16:10:34,890 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded makeconf.get_var
2016-01-21 16:10:34,891 [salt.utils ][TRACE ][22615] 'mdadm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,892 [salt.loader ][TRACE ][22615] Loaded linux_acl as virtual acl
2016-01-21 16:10:34,894 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_cloudwatch.get_alarm
2016-01-21 16:10:34,901 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad elasticsearch.exists
2016-01-21 16:10:34,902 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded x509.get_pem_entry
2016-01-21 16:10:34,902 [salt.loader ][DEBUG ][22615] Error loading states.x509: Could not load x509 state: m2crypto unavailable
2016-01-21 16:10:34,903 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded keystone.auth
2016-01-21 16:10:34,903 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded win_dacl.add_ace
2016-01-21 16:10:34,904 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded memcached.status
2016-01-21 16:10:34,911 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad influxdb.db_exists
2016-01-21 16:10:34,922 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded dockerng.version
2016-01-21 16:10:34,923 [salt.loader ][DEBUG ][22615] Error loading states.dockerng: 'dockerng' __virtual__ returned False: Docker module could not get imported
2016-01-21 16:10:34,925 [salt.utils ][TRACE ][22615] 'lvm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,926 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded splunk_search.get
2016-01-21 16:10:34,927 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_secgroup.exists
2016-01-21 16:10:34,928 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded lvs.get_rules
2016-01-21 16:10:34,930 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_vpc.exists
2016-01-21 16:10:34,930 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded tls.cert_info
2016-01-21 16:10:34,932 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_ec2.get_key
2016-01-21 16:10:34,933 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded mysql.query
2016-01-21 16:10:34,934 [salt.utils ][TRACE ][22615] 'rabbitmqctl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,935 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded apache.a2enmod
2016-01-21 16:10:34,936 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded postgres.user_exists
2016-01-21 16:10:34,937 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded postgres.schema_exists
2016-01-21 16:10:34,938 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded postgres.tablespace_exists
2016-01-21 16:10:34,939 [salt.utils ][TRACE ][22615] 'rabbitmqctl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,947 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad firewall.get_config
2016-01-21 16:10:34,950 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded chassis.cmd
2016-01-21 16:10:34,951 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded bigip.exec_action
2016-01-21 16:10:34,952 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded apache.config
2016-01-21 16:10:34,953 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded mysql.db_exists
2016-01-21 16:10:34,956 [salt.loader ][DEBUG ][22615] Failed to import states cloud:
Traceback (most recent call last):
File "/tmp/.root_214a90_salt/salt/loader.py", line 1135, in _load_module
), fn_, fpath, desc)
File "/tmp/.root_214a90_salt/salt/states/cloud.py", line 25, in <module>
import salt.utils.cloud as suc
File "/tmp/.root_214a90_salt/salt/utils/cloud.py", line 21, in <module>
import msgpack
ImportError: No module named msgpack
2016-01-21 16:10:34,958 [salt.utils ][TRACE ][22615] 'rabbitmqctl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,960 [salt.utils ][TRACE ][22615] 'git' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,961 [salt.loader ][TRACE ][22615] Loaded zcbuildout as virtual buildout
2016-01-21 16:10:34,963 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_asg.exists
2016-01-21 16:10:34,963 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded ddns.update
2016-01-21 16:10:34,964 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded eselect.exec_action
2016-01-21 16:10:34,965 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded nftables.version
2016-01-21 16:10:34,965 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded trafficserver.set_var
2016-01-21 16:10:34,966 [salt.utils ][TRACE ][22615] 'rabbitmqctl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,974 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad pagerduty_util.get_resource
2016-01-21 16:10:34,982 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad pagerduty_util.get_resource
2016-01-21 16:10:34,983 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_dynamodb.exists
2016-01-21 16:10:34,985 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_sqs.exists
2016-01-21 16:10:34,986 [salt.utils ][TRACE ][22615] 'htpasswd' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,986 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded bower.list
2016-01-21 16:10:34,988 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded postgres.group_create
2016-01-21 16:10:34,988 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded pecl.list
2016-01-21 16:10:34,991 [salt.utils ][TRACE ][22615] 'hg' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,992 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded rdp.enable
2016-01-21 16:10:34,992 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded chef.client
2016-01-21 16:10:34,993 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded boto_elasticache.exists
2016-01-21 16:10:34,995 [salt.utils ][TRACE ][22615] 'rabbitmqctl' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:34,995 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded mysql.grant_exists
2016-01-21 16:10:34,996 [salt.utils ][TRACE ][22615] 'firewall-cmd' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:35,004 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad docker.version
2016-01-21 16:10:35,006 [salt.loader ][TRACE ][22615] Loaded ini_manage as virtual ini
2016-01-21 16:10:35,006 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded win_path.rehash
2016-01-21 16:10:35,013 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad influxdb.db_exists
2016-01-21 16:10:35,015 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded mongodb.user_exists
2016-01-21 16:10:35,017 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded zk_concurrency.lock
2016-01-21 16:10:35,025 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad pagerduty_util.get_resource
2016-01-21 16:10:35,026 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded at.at
2016-01-21 16:10:35,034 [salt.loader ][TRACE ][22615] Loaded virtualenv_mod as virtual virtualenv
2016-01-21 16:10:35,035 [salt.loader ][DEBUG ][22615] Error loading states.ipmi: No module named pyghmi.ipmi
2016-01-21 16:10:35,037 [salt.loader ][DEBUG ][22615] Error loading states.npm: 'npm' binary not found on system
2016-01-21 16:10:35,039 [salt.utils ][TRACE ][22615] 'sysrc' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:35,042 [salt.loader ][DEBUG ][22615] Error loading states.boto_iam: Cannot load boto_cfn state: boto_iam module unavailable
2016-01-21 16:10:35,045 [salt.utils ][TRACE ][22615] 'racadm' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:35,047 [salt.utils ][TRACE ][22615] 'svn' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:35,051 [salt.utils ][TRACE ][22615] 'aws' could not be found in the following search path: ['/usr/local/rvm/gems/ruby-2.2.1/bin', '/usr/local/rvm/gems/ruby-2.2.1@global/bin', '/usr/local/rvm/rubies/ruby-2.2.1/bin', '/usr/lib64/qt-3.3/bin', '/usr/local/sbin', '/usr/local/bin', '/sbin', '/bin', '/usr/sbin', '/usr/bin', '/opt/homey/bin/', '/usr/local/rvm/bin', '/root/bin']
2016-01-21 16:10:35,057 [salt.utils.lazy ][DEBUG ][22615] Could not LazyLoad pkg.mod_run_check
2016-01-21 16:10:35,058 [salt.loaded.int.module.cmdmod][INFO ][22615] Executing command 'rpm -q salt-minion' in directory '/root'
2016-01-21 16:10:35,133 [salt.loaded.int.module.cmdmod][DEBUG ][22615] output: package salt-minion is not installed
2016-01-21 16:10:35,134 [salt.state ][DEBUG ][22615] Last command return code: 1
2016-01-21 16:10:35,135 [salt.loaded.int.module.cmdmod][INFO ][22615] Executing command ['rpm', '-qa', '--queryformat', '%{NAME}_|-%{VERSION}_|-%{RELEASE}_|-%{ARCH}_|-(none)\n'] in directory '/root'
2016-01-21 16:10:35,587 [salt.loaded.int.module.cmdmod][TRACE ][22615] output: rpm_|-4.8.0_|-47.el6_|-x86_64_|-(none)
basesystem_|-10.0_|-4.el6_|-noarch_|-(none)
cpp_|-4.4.7_|-16.el6_|-x86_64_|-(none)
glibc-devel_|-2.12_|-1.166.el6_7.1_|-x86_64_|-(none)
libattr_|-2.4.44_|-7.el6_|-x86_64_|-(none)
python_|-2.6.6_|-64.el6_|-x86_64_|-(none)
libudev_|-147_|-2.63.el6_|-x86_64_|-(none)
pcre_|-7.8_|-7.el6_|-x86_64_|-(none)
bzip2-libs_|-1.0.5_|-7.el6_0_|-x86_64_|-(none)
iproute_|-2.6.32_|-45.el6_|-x86_64_|-(none)
libdaemon_|-0.14_|-1.el6_|-x86_64_|-(none)
openssh_|-5.3p1_|-112.el6_7_|-x86_64_|-(none)
cronie_|-1.4.4_|-15.el6_|-x86_64_|-(none)
lua_|-5.1.4_|-4.1.el6_|-x86_64_|-(none)
rp-pppoe_|-3.10_|-11.el6_|-x86_64_|-(none)
libgpg-error_|-1.7_|-4.el6_|-x86_64_|-(none)
libdrm_|-2.4.59_|-2.el6_|-x86_64_|-(none)
bzip2_|-1.0.5_|-7.el6_0_|-x86_64_|-(none)
grub_|-0.97_|-94.el6_|-x86_64_|-(none)
e2fsprogs_|-1.41.12_|-22.el6_|-x86_64_|-(none)
p11-kit-trust_|-0.18.5_|-2.el6_5.2_|-x86_64_|-(none)
logrotate_|-3.7.8_|-23.el6_|-x86_64_|-(none)
lsscsi_|-0.23_|-3.el6_|-x86_64_|-(none)
upstart_|-0.6.5_|-13.el6_5.3_|-x86_64_|-(none)
gpg-pubkey_|-6b8d79e6_|-3f49313d_|-(none)_|-(none)
perl-IO-Compress-Base_|-2.021_|-141.el6_|-x86_64_|-(none)
libSM_|-1.2.1_|-2.el6_|-x86_64_|-(none)
lm_sensors-libs_|-3.1.1_|-17.el6_|-x86_64_|-(none)
plymouth_|-0.8.3_|-27.el6.centos.1_|-x86_64_|-(none)
m4_|-1.4.13_|-5.el6_|-x86_64_|-(none)
OpenIPMI-libs_|-2.0.16_|-14.el6_|-x86_64_|-(none)
groff_|-1.18.1.4_|-21.el6_|-x86_64_|-(none)
gpm-libs_|-1.20.6_|-12.el6_|-x86_64_|-(none)
cracklib_|-2.8.16_|-4.el6_|-x86_64_|-(none)
libXext_|-1.3.2_|-2.1.el6_|-x86_64_|-(none)
libevent_|-1.4.13_|-4.el6_|-x86_64_|-(none)
libibverbs_|-1.1.8_|-4.el6_|-x86_64_|-(none)
perl-Time-HiRes_|-1.9721_|-141.el6_|-x86_64_|-(none)
libselinux_|-2.0.94_|-5.8.el6_|-x86_64_|-(none)
man_|-1.6f_|-32.el6_|-x86_64_|-(none)
shadow-utils_|-4.1.4.2_|-19.el6_6.1_|-x86_64_|-(none)
usbutils_|-003_|-4.el6_|-x86_64_|-(none)
ipmitool_|-1.8.11_|-28.el6_|-x86_64_|-(none)
dbus_|-1.2.24_|-8.el6_6_|-x86_64_|-(none)
bridge-utils_|-1.2_|-10.el6_|-x86_64_|-(none)
htop_|-1.0.3_|-1.el6.rf_|-x86_64_|-(none)
libffi_|-3.0.5_|-3.2.el6_|-x86_64_|-(none)
sysstat_|-9.0.4_|-27.el6_|-x86_64_|-(none)
libpciaccess_|-0.13.3_|-0.1.el6_|-x86_64_|-(none)
pygpgme_|-0.1_|-18.20090824bzr68.el6_|-x86_64_|-(none)
xinetd_|-2.3.14_|-39.el6_4_|-x86_64_|-(none)
python-iniparse_|-0.3.1_|-2.1.el6_|-noarch_|-(none)
libXrender_|-0.9.8_|-2.1.el6_|-x86_64_|-(none)
keyutils-libs_|-1.4_|-5.el6_|-x86_64_|-(none)
libXft_|-2.3.1_|-2.el6_|-x86_64_|-(none)
yum-metadata-parser_|-1.1.2_|-16.el6_|-x86_64_|-(none)
libXi_|-1.7.2_|-2.2.el6_|-x86_64_|-(none)
less_|-436_|-13.el6_|-x86_64_|-(none)
kbd-misc_|-1.15_|-11.el6_|-noarch_|-(none)
lcms-libs_|-1.19_|-1.el6_|-x86_64_|-(none)
glib2_|-2.28.8_|-4.el6_|-x86_64_|-(none)
qt3_|-3.3.8b_|-30.el6_|-x86_64_|-(none)
elinks_|-0.12_|-0.21.pre5.el6_3_|-x86_64_|-(none)
cowsay_|-3.03_|-8.el6_|-noarch_|-(none)
selinux-policy-targeted_|-3.7.19_|-279.el6_7.5_|-noarch_|-(none)
crontabs_|-1.10_|-33.el6_|-noarch_|-(none)
zlib-devel_|-1.2.3_|-29.el6_|-x86_64_|-(none)
readline-devel_|-6.0_|-4.el6_|-x86_64_|-(none)
iwl100-firmware_|-39.31.5.1_|-1.el6_|-noarch_|-(none)
libtool_|-2.2.6_|-15.5.el6_|-x86_64_|-(none)
aic94xx-firmware_|-30_|-2.el6_|-noarch_|-(none)
sqlite-devel_|-3.6.20_|-1.el6_7.2_|-x86_64_|-(none)
kernel_|-2.6.32_|-504.16.2.el6_|-x86_64_|-(none)
libgssglue_|-0.1_|-11.el6_|-x86_64_|-(none)
keyutils_|-1.4_|-5.el6_|-x86_64_|-(none)
gnupg2_|-2.0.14_|-8.el6_|-x86_64_|-(none)
libertas-usb8388-firmware_|-5.110.22.p23_|-3.1.el6_|-noarch_|-(none)
zd1211-firmware_|-1.4_|-4.el6_|-noarch_|-(none)
ql2200-firmware_|-2.02.08_|-3.1.el6_|-noarch_|-(none)
ipw2200-firmware_|-3.1_|-4.el6_|-noarch_|-(none)
epel-release_|-6_|-8_|-noarch_|-(none)
libgcc_|-4.4.7_|-16.el6_|-x86_64_|-(none)
kernel-firmware_|-2.6.32_|-573.3.1.el6_|-noarch_|-(none)
ncurses-libs_|-5.7_|-4.20090207.el6_|-x86_64_|-(none)
db4_|-4.7.25_|-19.el6_6_|-x86_64_|-(none)
gpg-pubkey_|-0608b895_|-4bd22942_|-(none)_|-(none)
nss-sysinit_|-3.19.1_|-3.el6_6_|-x86_64_|-(none)
binutils_|-2.20.51.0.2_|-5.43.el6_|-x86_64_|-(none)
autoconf_|-2.63_|-5.1.el6_|-noarch_|-(none)
perl-libs_|-5.10.1_|-141.el6_|-x86_64_|-(none)
libaio_|-0.3.107_|-10.el6_|-x86_64_|-(none)
perl_|-5.10.1_|-141.el6_|-x86_64_|-(none)
cloog-ppl_|-0.15.7_|-1.2.el6_|-x86_64_|-(none)
wpa_supplicant_|-0.7.3_|-6.el6_|-x86_64_|-(none)
libcurl_|-7.19.7_|-46.el6_|-x86_64_|-(none)
automake_|-1.11.1_|-4.el6_|-noarch_|-(none)
curl_|-7.19.7_|-46.el6_|-x86_64_|-(none)
iperf_|-2.0.5_|-11.el6_|-x86_64_|-(none)
filesystem_|-2.4.30_|-3.el6_|-x86_64_|-(none)
openldap_|-2.4.40_|-5.el6_|-x86_64_|-(none)
mtr_|-0.75_|-5.el6_|-x86_64_|-(none)
e2fsprogs-libs_|-1.41.12_|-22.el6_|-x86_64_|-(none)
traceroute_|-2.0.14_|-2.el6_|-x86_64_|-(none)
tar_|-1.23_|-13.el6_|-x86_64_|-(none)
iotop_|-0.3.2_|-7.el6_|-noarch_|-(none)
glibc-headers_|-2.12_|-1.166.el6_7.1_|-x86_64_|-(none)
acpid_|-1.0.10_|-2.1.el6_|-x86_64_|-(none)
procps_|-3.2.8_|-33.el6_|-x86_64_|-(none)
p7zip_|-9.20.1_|-2.el6_|-x86_64_|-(none)
libcap_|-2.16_|-5.5.el6_|-x86_64_|-(none)
sqlite_|-3.6.20_|-1.el6_7.2_|-x86_64_|-(none)
info_|-4.13a_|-8.el6_|-x86_64_|-(none)
python-libs_|-2.6.6_|-64.el6_|-x86_64_|-(none)
libnl_|-1.1.4_|-2.el6_|-x86_64_|-(none)
popt_|-1.13_|-7.el6_|-x86_64_|-(none)
ethtool_|-3.5_|-6.el6_|-x86_64_|-(none)
ConsoleKit-libs_|-0.4.1_|-3.el6_|-x86_64_|-(none)
libacl_|-2.2.49_|-6.el6_|-x86_64_|-(none)
libgudev1_|-147_|-2.63.el6_|-x86_64_|-(none)
libstdc++_|-4.4.7_|-16.el6_|-x86_64_|-(none)
grep_|-2.20_|-3.el6_|-x86_64_|-(none)
eggdbus_|-0.6_|-3.el6_|-x86_64_|-(none)
libsepol_|-2.0.41_|-4.el6_|-x86_64_|-(none)
iptables_|-1.4.7_|-16.el6_|-x86_64_|-(none)
ConsoleKit_|-0.4.1_|-3.el6_|-x86_64_|-(none)
sed_|-4.2.1_|-10.el6_|-x86_64_|-(none)
iputils_|-20071127_|-20.el6_|-x86_64_|-(none)
gawk_|-3.1.7_|-10.el6_|-x86_64_|-(none)
udev_|-147_|-2.63.el6_|-x86_64_|-(none)
dracut_|-004_|-388.el6_|-noarch_|-(none)
cronie-anacron_|-1.4.4_|-15.el6_|-x86_64_|-(none)
ppp_|-2.4.5_|-10.el6_|-x86_64_|-(none)
libidn_|-1.18_|-2.el6_|-x86_64_|-(none)
dhcp-common_|-4.1.1_|-49.P1.el6.centos_|-x86_64_|-(none)
NetworkManager_|-0.8.1_|-99.el6_|-x86_64_|-(none)
kernel_|-2.6.32_|-573.3.1.el6_|-x86_64_|-(none)
findutils_|-4.4.2_|-6.el6_|-x86_64_|-(none)
openssh-server_|-5.3p1_|-112.el6_7_|-x86_64_|-(none)
checkpolicy_|-2.0.22_|-1.el6_|-x86_64_|-(none)
b43-openfwwf_|-5.2_|-10.el6_|-noarch_|-(none)
yum_|-3.2.29_|-69.el6.centos_|-noarch_|-(none)
tcp_wrappers-libs_|-7.6_|-57.el6_|-x86_64_|-(none)
authconfig_|-6.1.12_|-23.el6_|-x86_64_|-(none)
expat_|-2.0.1_|-11.el6_2_|-x86_64_|-(none)
gcc_|-4.4.7_|-16.el6_|-x86_64_|-(none)
p11-kit_|-0.18.5_|-2.el6_5.2_|-x86_64_|-(none)
libuser_|-0.56.13_|-8.el6_7_|-x86_64_|-(none)
pinentry_|-0.7.6_|-8.el6_|-x86_64_|-(none)
libgcrypt_|-1.4.5_|-11.el6_4_|-x86_64_|-(none)
ncurses_|-5.7_|-4.20090207.el6_|-x86_64_|-(none)
gmp_|-4.3.1_|-7.el6_2.2_|-x86_64_|-(none)
lsof_|-4.82_|-5.el6_|-x86_64_|-(none)
libnih_|-1.0.1_|-7.el6_|-x86_64_|-(none)
efibootmgr_|-0.5.4_|-13.el6_|-x86_64_|-(none)
rpmforge-release_|-0.5.3_|-1.el6.rf_|-x86_64_|-(none)
MAKEDEV_|-3.24_|-6.el6_|-x86_64_|-(none)
perl-Compress-Raw-Zlib_|-2.021_|-141.el6_|-x86_64_|-(none)
libXau_|-1.0.6_|-4.el6_|-x86_64_|-(none)
cpio_|-2.10_|-12.el6_5_|-x86_64_|-(none)
perl-IO-Compress-Zlib_|-2.021_|-141.el6_|-x86_64_|-(none)
plymouth-core-libs_|-0.8.3_|-27.el6.centos.1_|-x86_64_|-(none)
libxcb_|-1.9.1_|-3.el6_|-x86_64_|-(none)
device-mapper-libs_|-1.02.95_|-3.el6_7.2_|-x86_64_|-(none)
diffutils_|-2.8.1_|-28.el6_|-x86_64_|-(none)
libcgroup_|-0.40.rc1_|-16.el6_|-x86_64_|-(none)
kernel_|-2.6.32_|-431.29.2.el6_|-x86_64_|-(none)
make_|-3.81_|-20.el6_|-x86_64_|-(none)
net-snmp-libs_|-5.5_|-54.el6_7.1_|-x86_64_|-(none)
postfix_|-2.6.6_|-6.el6_5_|-x86_64_|-(none)
which_|-2.19_|-6.el6_|-x86_64_|-(none)
gettext_|-0.17_|-18.el6_|-x86_64_|-(none)
OpenIPMI_|-2.0.16_|-14.el6_|-x86_64_|-(none)
vim-common_|-7.4.629_|-5.el6_|-x86_64_|-(none)
ntpdate_|-4.2.6p5_|-5.el6.centos_|-x86_64_|-(none)
cracklib-dicts_|-2.8.16_|-4.el6_|-x86_64_|-(none)
libX11_|-1.6.0_|-6.el6_|-x86_64_|-(none)
ql2400-firmware_|-7.03.00_|-1.el6_5_|-noarch_|-(none)
libXt_|-1.1.4_|-6.1.el6_|-x86_64_|-(none)
ql2500-firmware_|-7.03.00_|-1.el6_5_|-noarch_|-(none)
libusb1_|-1.0.9_|-0.6.rc1.el6_|-x86_64_|-(none)
mobile-broadband-provider-info_|-1.20100122_|-4.el6_|-noarch_|-(none)
fontpackages-filesystem_|-1.41_|-1.1.el6_|-noarch_|-(none)
rdma_|-6.7_3.15_|-5.el6_|-noarch_|-(none)
librdmacm_|-1.0.19.1_|-1.el6_|-x86_64_|-(none)
xz-lzma-compat_|-4.999.9_|-0.5.beta.20091007git.el6_|-x86_64_|-(none)
mingetty_|-1.08_|-5.el6_|-x86_64_|-(none)
collectl_|-4.0.2_|-1.el6_|-noarch_|-(none)
audit-libs_|-2.3.7_|-5.el6_|-x86_64_|-(none)
qperf_|-0.4.9_|-1.el6_|-x86_64_|-(none)
tmux_|-1.6_|-3.el6_|-x86_64_|-(none)
coreutils_|-8.4_|-37.el6_|-x86_64_|-(none)
xorg-x11-xauth_|-1.0.2_|-7.1.el6_|-x86_64_|-(none)
libuuid_|-2.17.2_|-12.18.el6_|-x86_64_|-(none)
vim-enhanced_|-7.4.629_|-5.el6_|-x86_64_|-(none)
file-libs_|-5.04_|-21.el6_|-x86_64_|-(none)
gpgme_|-1.1.8_|-3.el6_|-x86_64_|-(none)
numad_|-0.5_|-12.20150602git.el6_|-x86_64_|-(none)
libblkid_|-2.17.2_|-12.18.el6_|-x86_64_|-(none)
fipscheck-lib_|-1.2.0_|-7.el6_|-x86_64_|-(none)
nc_|-1.84_|-24.el6_|-x86_64_|-(none)
xz-libs_|-4.999.9_|-0.5.beta.20091007git.el6_|-x86_64_|-(none)
ustr_|-1.0.4_|-9.1.el6_|-x86_64_|-(none)
ntsysv_|-1.3.49.3_|-5.el6_|-x86_64_|-(none)
slang_|-2.2.1_|-1.el6_|-x86_64_|-(none)
dos2unix_|-3.1_|-37.el6_|-x86_64_|-(none)
libselinux-utils_|-2.0.94_|-5.8.el6_|-x86_64_|-(none)
tcpdump_|-4.0.0_|-5.20090921gitdf3cb4.2.el6_|-x86_64_|-(none)
nmon_|-14i_|-8.el6_|-x86_64_|-(none)
cyrus-sasl-lib_|-2.1.23_|-15.el6_6.2_|-x86_64_|-(none)
dmidecode_|-2.12_|-6.el6_|-x86_64_|-(none)
python-pycurl_|-7.19.0_|-8.el6_|-x86_64_|-(none)
mlocate_|-0.22.2_|-6.el6_|-x86_64_|-(none)
avahi-autoipd_|-0.6.25_|-15.el6_|-x86_64_|-(none)
newt-python_|-0.52.11_|-3.el6_|-x86_64_|-(none)
arpwatch_|-2.1a15_|-14.el6_|-x86_64_|-(none)
pkgconfig_|-0.23_|-9.1.el6_|-x86_64_|-(none)
tree_|-1.5.3_|-3.el6_|-x86_64_|-(none)
pciutils-libs_|-3.1.10_|-4.el6_|-x86_64_|-(none)
freetype_|-2.3.11_|-15.el6_6.1_|-x86_64_|-(none)
libjpeg-turbo_|-1.2.1_|-3.el6_5_|-x86_64_|-(none)
dbus-glib_|-0.86_|-6.el6_|-x86_64_|-(none)
libXrandr_|-1.4.1_|-2.1.el6_|-x86_64_|-(none)
libXinerama_|-1.1.3_|-2.1.el6_|-x86_64_|-(none)
libpng_|-1.2.49_|-1.el6_2_|-x86_64_|-(none)
gzip_|-1.3.12_|-22.el6_|-x86_64_|-(none)
nss_compat_ossl_|-0.9.6_|-1.el6_|-x86_64_|-(none)
libmng_|-1.0.10_|-4.1.el6_|-x86_64_|-(none)
shared-mime-info_|-0.70_|-6.el6_|-x86_64_|-(none)
libXcursor_|-1.1.14_|-2.1.el6_|-x86_64_|-(none)
grubby_|-7.0.15_|-7.el6_|-x86_64_|-(none)
python-setuptools_|-0.6.10_|-3.el6_|-noarch_|-(none)
oprofile_|-0.9.9_|-11.el6_|-x86_64_|-(none)
kbd_|-1.15_|-11.el6_|-x86_64_|-(none)
bind-utils_|-9.8.2_|-0.37.rc1.el6_7.4_|-x86_64_|-(none)
fortune_|-1.0_|-37.2.el6.rf_|-x86_64_|-(none)
selinux-policy_|-3.7.19_|-279.el6_7.5_|-noarch_|-(none)
libssh2_|-1.4.2_|-1.el6_6.1_|-x86_64_|-(none)
nss-softokn_|-3.14.3_|-23.el6_7_|-x86_64_|-(none)
fio_|-2.1.10_|-1.el6.rf_|-x86_64_|-(none)
libstdc++-devel_|-4.4.7_|-16.el6_|-x86_64_|-(none)
keyutils-libs-devel_|-1.4_|-5.el6_|-x86_64_|-(none)
util-linux-ng_|-2.17.2_|-12.18.el6_|-x86_64_|-(none)
libselinux-devel_|-2.0.94_|-5.8.el6_|-x86_64_|-(none)
libcom_err-devel_|-1.41.12_|-22.el6_|-x86_64_|-(none)
ncurses-devel_|-5.7_|-4.20090207.el6_|-x86_64_|-(none)
iwl5150-firmware_|-8.24.2.2_|-1.el6_|-noarch_|-(none)
iwl6050-firmware_|-41.28.5.1_|-2.el6_|-noarch_|-(none)
iwl6000g2a-firmware_|-17.168.5.3_|-1.el6_|-noarch_|-(none)
yum-plugin-fastestmirror_|-1.1.30_|-30.el6_|-noarch_|-(none)
iwl6000-firmware_|-9.221.4.1_|-1.el6_|-noarch_|-(none)
passwd_|-0.77_|-4.el6_2.2_|-x86_64_|-(none)
yum-utils_|-1.1.30_|-30.el6_|-noarch_|-(none)
bfa-firmware_|-3.2.23.0_|-2.el6_|-noarch_|-(none)
attr_|-2.4.44_|-7.el6_|-x86_64_|-(none)
cyrus-sasl_|-2.1.23_|-15.el6_6.2_|-x86_64_|-(none)
iwl5000-firmware_|-8.83.5.1_1_|-1.el6_1.1_|-noarch_|-(none)
ivtv-firmware_|-20080701_|-20.2_|-noarch_|-(none)
wget_|-1.12_|-5.el6_6.1_|-x86_64_|-(none)
atmel-firmware_|-1.3_|-7.el6_|-noarch_|-(none)
iwl4965-firmware_|-228.61.2.24_|-2.1.el6_|-noarch_|-(none)
audit_|-2.3.7_|-5.el6_|-x86_64_|-(none)
iwl3945-firmware_|-15.32.2.9_|-4.el6_|-noarch_|-(none)
rt73usb-firmware_|-1.8_|-7.el6_|-noarch_|-(none)
ql23xx-firmware_|-3.03.27_|-3.1.el6_|-noarch_|-(none)
rootfiles_|-8.1_|-6.1.el6_|-noarch_|-(none)
ca-certificates_|-2015.2.4_|-65.0.1.el6_6_|-noarch_|-(none)
centos-release_|-6_|-7.el6.centos.12.3_|-x86_64_|-(none)
tzdata_|-2015f_|-1.el6_|-noarch_|-(none)
ncurses-base_|-5.7_|-4.20090207.el6_|-x86_64_|-(none)
glibc_|-2.12_|-1.166.el6_7.1_|-x86_64_|-(none)
bash_|-4.1.2_|-33.el6_|-x86_64_|-(none)
libcom_err_|-1.41.12_|-22.el6_|-x86_64_|-(none)
pam_|-1.1.1_|-20.el6_7.1_|-x86_64_|-(none)
gpg-pubkey_|-5568bbb2_|-4cb9de99_|-(none)_|-(none)
nss_|-3.19.1_|-3.el6_6_|-x86_64_|-(none)
krb5-libs_|-1.10.3_|-42.el6_|-x86_64_|-(none)
elfutils-libelf_|-0.161_|-3.el6_|-x86_64_|-(none)
module-init-tools_|-3.9_|-25.el6_|-x86_64_|-(none)
libedit_|-2.11_|-4.20080712cvs.1.el6_|-x86_64_|-(none)
perl-Pod-Escapes_|-1.04_|-141.el6_|-x86_64_|-(none)
perl-version_|-0.77_|-141.el6_|-x86_64_|-(none)
mpfr_|-2.4.1_|-6.el6_|-x86_64_|-(none)
perl-Pod-Simple_|-3.13_|-141.el6_|-x86_64_|-(none)
ppl_|-0.10.2_|-11.el6_|-x86_64_|-(none)
sysvinit-tools_|-2.87_|-6.dsf.el6_|-x86_64_|-(none)
hwdata_|-0.233_|-14.1.el6_|-noarch_|-(none)
nss-tools_|-3.19.1_|-3.el6_6_|-x86_64_|-(none)
db4-utils_|-4.7.25_|-19.el6_6_|-x86_64_|-(none)
openssl-devel_|-1.0.1e_|-42.el6_|-x86_64_|-(none)
gcc-c++_|-4.4.7_|-16.el6_|-x86_64_|-(none)
libffi-devel_|-3.0.5_|-3.2.el6_|-x86_64_|-(none)
bison_|-2.4.1_|-5.el6_|-x86_64_|-(none)
jansson_|-2.6_|-1.el6_|-x86_64_|-(none)
jdk_|-1.7.0_80_|-fcs_|-x86_64_|-(none)
libtirpc_|-0.2.1_|-10.el6_|-x86_64_|-(none)
python-argparse_|-1.2.1_|-2.1.el6_|-noarch_|-(none)
nfs-utils-lib_|-1.1.5_|-11.el6_|-x86_64_|-(none)
gpg-pubkey_|-de57bfbe_|-53a9be98_|-(none)_|-(none)
unzip_|-6.0_|-2.el6_6_|-x86_64_|-(none)
rpm-libs_|-4.8.0_|-47.el6_|-x86_64_|-(none)
bonnie++_|-1.96_|-2.el6_|-x86_64_|-(none)
setup_|-2.8.14_|-20.el6_4.1_|-noarch_|-(none)
libss_|-1.41.12_|-22.el6_|-x86_64_|-(none)
libgomp_|-4.4.7_|-16.el6_|-x86_64_|-(none)
zip_|-3.0_|-1.el6_|-x86_64_|-(none)
vim-minimal_|-7.4.629_|-5.el6_|-x86_64_|-(none)
hdparm_|-9.43_|-4.el6_|-x86_64_|-(none)
zlib_|-1.2.3_|-29.el6_|-x86_64_|-(none)
rpm-python_|-4.8.0_|-47.el6_|-x86_64_|-(none)
NetworkManager-glib_|-0.8.1_|-99.el6_|-x86_64_|-(none)
ModemManager_|-0.4.0_|-5.git20100628.el6_|-x86_64_|-(none)
policycoreutils_|-2.0.83_|-24.el6_|-x86_64_|-(none)
initscripts_|-9.03.49_|-1.el6.centos_|-x86_64_|-(none)
readline_|-6.0_|-4.el6_|-x86_64_|-(none)
dracut-kernel_|-004_|-388.el6_|-noarch_|-(none)
libpcap_|-1.4.0_|-4.20130826git2dbcaa1.el6_|-x86_64_|-(none)
dhclient_|-4.1.1_|-49.P1.el6.centos_|-x86_64_|-(none)
openssh-clients_|-5.3p1_|-112.el6_7_|-x86_64_|-(none)
iptables-ipv6_|-1.4.7_|-16.el6_|-x86_64_|-(none)
sudo_|-1.8.6p3_|-20.el6_7_|-x86_64_|-(none)
libtasn1_|-2.3_|-6.el6_5_|-x86_64_|-(none)
pth_|-2.0.7_|-9.3.el6_|-x86_64_|-(none)
mysql-libs_|-5.1.73_|-5.el6_6_|-x86_64_|-(none)
libxml2_|-2.7.6_|-20.el6_|-x86_64_|-(none)
libusb_|-0.1.12_|-23.el6_|-x86_64_|-(none)
xorg-x11-drv-ati-firmware_|-7.5.99_|-3.el6_|-noarch_|-(none)
plymouth-scripts_|-0.8.3_|-27.el6.centos.1_|-x86_64_|-(none)
libutempter_|-1.1.5_|-4.1.el6_|-x86_64_|-(none)
libICE_|-1.0.6_|-1.el6_|-x86_64_|-(none)
net-tools_|-1.60_|-110.el6_2_|-x86_64_|-(none)
perl-Compress-Zlib_|-2.021_|-141.el6_|-x86_64_|-(none)
psmisc_|-22.6_|-19.el6_5_|-x86_64_|-(none)
device-mapper_|-1.02.95_|-3.el6_7.2_|-x86_64_|-(none)
cvs_|-1.11.23_|-16.el6_|-x86_64_|-(none)
dash_|-0.5.5.1_|-4.el6_|-x86_64_|-(none)
vim-filesystem_|-7.4.629_|-5.el6_|-x86_64_|-(none)
libX11-common_|-1.6.0_|-6.el6_|-noarch_|-(none)
libXmu_|-1.1.1_|-2.el6_|-x86_64_|-(none)
redhat-logos_|-60.0.14_|-12.el6.centos_|-noarch_|-(none)
pciutils_|-3.1.10_|-4.el6_|-x86_64_|-(none)
xz_|-4.999.9_|-0.5.beta.20091007git.el6_|-x86_64_|-(none)
libcap-ng_|-0.6.4_|-3.el6_0.1_|-x86_64_|-(none)
wqy-zenhei-fonts_|-0.9.45_|-3.el6_|-noarch_|-(none)
coreutils-libs_|-8.4_|-37.el6_|-x86_64_|-(none)
ntp_|-4.2.6p5_|-5.el6.centos_|-x86_64_|-(none)
dbus-libs_|-1.2.24_|-8.el6_6_|-x86_64_|-(none)
parted_|-2.1_|-29.el6_|-x86_64_|-(none)
fipscheck_|-1.2.0_|-7.el6_|-x86_64_|-(none)
nethogs_|-0.8.0_|-1.el6_|-x86_64_|-(none)
newt_|-0.52.11_|-3.el6_|-x86_64_|-(none)
nmap_|-5.51_|-4.el6_|-x86_64_|-(none)
iptraf_|-3.0.1_|-14.el6_|-x86_64_|-(none)
file_|-5.04_|-21.el6_|-x86_64_|-(none)
python-urlgrabber_|-3.9.1_|-9.el6_|-noarch_|-(none)
numactl_|-2.0.9_|-2.el6_|-x86_64_|-(none)
gamin_|-0.1.10_|-9.el6_|-x86_64_|-(none)
fontconfig_|-2.8.0_|-5.el6_|-x86_64_|-(none)
bind-libs_|-9.8.2_|-0.37.rc1.el6_7.4_|-x86_64_|-(none)
python-psutil_|-0.6.1_|-1.el6_|-x86_64_|-(none)
libXfixes_|-5.0.1_|-2.1.el6_|-x86_64_|-(none)
glances_|-1.7.4_|-1.el6_|-noarch_|-(none)
strace_|-4.8_|-10.el6_|-x86_64_|-(none)
nss-softokn-freebl_|-3.14.3_|-23.el6_7_|-x86_64_|-(none)
unrar_|-5.0.3_|-1.el6.rf_|-x86_64_|-(none)
libsepol-devel_|-2.0.41_|-4.el6_|-x86_64_|-(none)
krb5-devel_|-1.10.3_|-42.el6_|-x86_64_|-(none)
dnsmasq_|-2.48_|-14.el6_|-x86_64_|-(none)
patch_|-2.6_|-6.el6_|-x86_64_|-(none)
iwl1000-firmware_|-39.31.5.1_|-1.el6_|-noarch_|-(none)
jansson-devel_|-2.6_|-1.el6_|-x86_64_|-(none)
system-config-firewall-base_|-1.2.27_|-7.2.el6_6_|-noarch_|-(none)
rpcbind_|-0.2.0_|-11.el6_|-x86_64_|-(none)
acl_|-2.2.49_|-6.el6_|-x86_64_|-(none)
nfs-utils_|-1.2.3_|-64.el6_|-x86_64_|-(none)
rsyslog_|-5.8.10_|-10.el6_6_|-x86_64_|-(none)
ql2100-firmware_|-1.19.38_|-3.1.el6_|-noarch_|-(none)
rt61pci-firmware_|-1.2_|-7.el6_|-noarch_|-(none)
rsync_|-3.0.6_|-12.el6_|-x86_64_|-(none)
ipw2100-firmware_|-1.3_|-11.el6_|-noarch_|-(none)
nspr_|-4.10.8_|-1.el6_6_|-x86_64_|-(none)
gpg-pubkey_|-c105b9de_|-4e0fd3a3_|-(none)_|-(none)
kernel-headers_|-2.6.32_|-573.3.1.el6_|-x86_64_|-(none)
glibc-common_|-2.12_|-1.166.el6_7.1_|-x86_64_|-(none)
kernel_|-2.6.32_|-431.3.1.el6_|-x86_64_|-(none)
chkconfig_|-1.3.49.3_|-5.el6_|-x86_64_|-(none)
nss-util_|-3.19.1_|-1.el6_6_|-x86_64_|-(none)
openssl_|-1.0.1e_|-42.el6_|-x86_64_|-(none)
gdbm_|-1.8.0_|-38.el6_|-x86_64_|-(none)
perl-Module-Pluggable_|-3.90_|-141.el6_|-x86_64_|-(none)
libsemanage_|-2.0.43_|-5.1.el6_|-x86_64_|-(none)
polkit_|-0.96_|-11.el6_|-x86_64_|-(none)
iftop_|-1.0_|-0.7.pre4.el6_|-x86_64_|-(none)
2016-01-21 16:10:35,780 [salt.loaded.int.module.yumpkg][INFO ][22615] Restricting to repo 'saltstack'
2016-01-21 16:10:35,781 [salt.loaded.int.module.cmdmod][INFO ][22615] Executing command "repoquery --plugins --queryformat '%{NAME}_|-%{ARCH}' --disablerepo='*' --enablerepo='saltstack' --pkgnarrow=all --all" in directory '/root'
2016-01-21 16:10:36,096 [salt.loaded.int.module.cmdmod][TRACE ][22615] stdout: ConsoleKit_|-x86_64
ConsoleKit-libs_|-x86_64
MAKEDEV_|-x86_64
ModemManager_|-x86_64
NetworkManager_|-x86_64
NetworkManager-glib_|-x86_64
OpenIPMI_|-x86_64
OpenIPMI-libs_|-x86_64
acl_|-x86_64
acpid_|-x86_64
aic94xx-firmware_|-noarch
arpwatch_|-x86_64
atmel-firmware_|-noarch
attr_|-x86_64
audit_|-x86_64
audit-libs_|-x86_64
authconfig_|-x86_64
autoconf_|-noarch
automake_|-noarch
avahi-autoipd_|-x86_64
b43-openfwwf_|-noarch
basesystem_|-noarch
bash_|-x86_64
bfa-firmware_|-noarch
bind-libs_|-x86_64
bind-utils_|-x86_64
binutils_|-x86_64
bison_|-x86_64
bonnie++_|-x86_64
bridge-utils_|-x86_64
bzip2_|-x86_64
bzip2-libs_|-x86_64
ca-certificates_|-noarch
centos-release_|-x86_64
checkpolicy_|-x86_64
chkconfig_|-x86_64
cloog-ppl_|-x86_64
collectl_|-noarch
coreutils_|-x86_64
coreutils-libs_|-x86_64
cowsay_|-noarch
cpio_|-x86_64
cpp_|-x86_64
cracklib_|-x86_64
cracklib-dicts_|-x86_64
cronie_|-x86_64
cronie-anacron_|-x86_64
crontabs_|-noarch
curl_|-x86_64
cvs_|-x86_64
cyrus-sasl_|-x86_64
cyrus-sasl-lib_|-x86_64
dash_|-x86_64
db4_|-x86_64
db4-utils_|-x86_64
dbus_|-x86_64
dbus-glib_|-x86_64
dbus-libs_|-x86_64
device-mapper_|-x86_64
device-mapper-libs_|-x86_64
dhclient_|-x86_64
dhcp-common_|-x86_64
diffutils_|-x86_64
dmidecode_|-x86_64
dnsmasq_|-x86_64
dos2unix_|-x86_64
dracut_|-noarch
dracut-kernel_|-noarch
e2fsprogs_|-x86_64
e2fsprogs-libs_|-x86_64
efibootmgr_|-x86_64
eggdbus_|-x86_64
elfutils-libelf_|-x86_64
elinks_|-x86_64
epel-release_|-noarch
ethtool_|-x86_64
expat_|-x86_64
file_|-x86_64
file-libs_|-x86_64
filesystem_|-x86_64
findutils_|-x86_64
fio_|-x86_64
fipscheck_|-x86_64
fipscheck-lib_|-x86_64
fontconfig_|-x86_64
fontpackages-filesystem_|-noarch
fortune_|-x86_64
freetype_|-x86_64
gamin_|-x86_64
gawk_|-x86_64
gcc_|-x86_64
gcc-c++_|-x86_64
gdbm_|-x86_64
gettext_|-x86_64
glances_|-noarch
glib2_|-x86_64
glibc_|-x86_64
glibc-common_|-x86_64
glibc-devel_|-x86_64
glibc-headers_|-x86_64
gmp_|-x86_64
gnupg2_|-x86_64
gpgme_|-x86_64
gpm-libs_|-x86_64
grep_|-x86_64
groff_|-x86_64
grub_|-x86_64
grubby_|-x86_64
gzip_|-x86_64
hdparm_|-x86_64
htop_|-x86_64
hwdata_|-noarch
iftop_|-x86_64
info_|-x86_64
initscripts_|-x86_64
iotop_|-noarch
iperf_|-x86_64
ipmitool_|-x86_64
iproute_|-x86_64
iptables_|-x86_64
iptables-ipv6_|-x86_64
iptraf_|-x86_64
iputils_|-x86_64
ipw2100-firmware_|-noarch
ipw2200-firmware_|-noarch
ivtv-firmware_|-noarch
iwl100-firmware_|-noarch
iwl1000-firmware_|-noarch
iwl3945-firmware_|-noarch
iwl4965-firmware_|-noarch
iwl5000-firmware_|-noarch
iwl5150-firmware_|-noarch
iwl6000-firmware_|-noarch
iwl6000g2a-firmware_|-noarch
iwl6050-firmware_|-noarch
jansson_|-x86_64
jansson-devel_|-x86_64
jdk_|-x86_64
kbd_|-x86_64
kbd-misc_|-noarch
kernel_|-x86_64
kernel_|-x86_64
kernel_|-x86_64
kernel_|-x86_64
kernel-firmware_|-noarch
kernel-headers_|-x86_64
keyutils_|-x86_64
keyutils-libs_|-x86_64
keyutils-libs-devel_|-x86_64
krb5-devel_|-x86_64
krb5-libs_|-x86_64
lcms-libs_|-x86_64
less_|-x86_64
libICE_|-x86_64
libSM_|-x86_64
libX11_|-x86_64
libX11-common_|-noarch
libXau_|-x86_64
libXcursor_|-x86_64
libXext_|-x86_64
libXfixes_|-x86_64
libXft_|-x86_64
libXi_|-x86_64
libXinerama_|-x86_64
libXmu_|-x86_64
libXrandr_|-x86_64
libXrender_|-x86_64
libXt_|-x86_64
libacl_|-x86_64
libaio_|-x86_64
libattr_|-x86_64
libblkid_|-x86_64
libcap_|-x86_64
libcap-ng_|-x86_64
libcgroup_|-x86_64
libcom_err_|-x86_64
libcom_err-devel_|-x86_64
libcurl_|-x86_64
libdaemon_|-x86_64
libdrm_|-x86_64
libedit_|-x86_64
libertas-usb8388-firmware_|-noarch
libevent_|-x86_64
libffi_|-x86_64
libffi-devel_|-x86_64
libgcc_|-x86_64
libgcrypt_|-x86_64
libgomp_|-x86_64
libgpg-error_|-x86_64
libgssglue_|-x86_64
libgudev1_|-x86_64
libibverbs_|-x86_64
libidn_|-x86_64
libjpeg-turbo_|-x86_64
libmng_|-x86_64
libnih_|-x86_64
libnl_|-x86_64
libpcap_|-x86_64
libpciaccess_|-x86_64
libpng_|-x86_64
librdmacm_|-x86_64
libselinux_|-x86_64
libselinux-devel_|-x86_64
libselinux-utils_|-x86_64
libsemanage_|-x86_64
libsepol_|-x86_64
libsepol-devel_|-x86_64
libss_|-x86_64
libssh2_|-x86_64
libstdc++_|-x86_64
libstdc++-devel_|-x86_64
libtasn1_|-x86_64
libtirpc_|-x86_64
libtool_|-x86_64
libudev_|-x86_64
libusb_|-x86_64
libusb1_|-x86_64
libuser_|-x86_64
libutempter_|-x86_64
libuuid_|-x86_64
libxcb_|-x86_64
libxml2_|-x86_64
lm_sensors-libs_|-x86_64
logrotate_|-x86_64
lsof_|-x86_64
lsscsi_|-x86_64
lua_|-x86_64
m4_|-x86_64
make_|-x86_64
man_|-x86_64
mingetty_|-x86_64
mlocate_|-x86_64
mobile-broadband-provider-info_|-noarch
module-init-tools_|-x86_64
mpfr_|-x86_64
mtr_|-x86_64
mysql-libs_|-x86_64
nc_|-x86_64
ncurses_|-x86_64
ncurses-base_|-x86_64
ncurses-devel_|-x86_64
ncurses-libs_|-x86_64
net-snmp-libs_|-x86_64
net-tools_|-x86_64
nethogs_|-x86_64
newt_|-x86_64
newt-python_|-x86_64
nfs-utils_|-x86_64
nfs-utils-lib_|-x86_64
nmap_|-x86_64
nmon_|-x86_64
nspr_|-x86_64
nss_|-x86_64
nss-softokn_|-x86_64
nss-softokn-freebl_|-x86_64
nss-sysinit_|-x86_64
nss-tools_|-x86_64
nss-util_|-x86_64
nss_compat_ossl_|-x86_64
ntp_|-x86_64
ntpdate_|-x86_64
ntsysv_|-x86_64
numactl_|-x86_64
numad_|-x86_64
openldap_|-x86_64
openssh_|-x86_64
openssh-clients_|-x86_64
openssh-server_|-x86_64
openssl_|-x86_64
openssl-devel_|-x86_64
oprofile_|-x86_64
p11-kit_|-x86_64
p11-kit-trust_|-x86_64
p7zip_|-x86_64
pam_|-x86_64
parted_|-x86_64
passwd_|-x86_64
patch_|-x86_64
pciutils_|-x86_64
pciutils-libs_|-x86_64
pcre_|-x86_64
perl_|-x86_64
perl-Compress-Raw-Zlib_|-x86_64
perl-Compress-Zlib_|-x86_64
perl-IO-Compress-Base_|-x86_64
perl-IO-Compress-Zlib_|-x86_64
perl-Module-Pluggable_|-x86_64
perl-Pod-Escapes_|-x86_64
perl-Pod-Simple_|-x86_64
perl-Time-HiRes_|-x86_64
perl-libs_|-x86_64
perl-version_|-x86_64
pinentry_|-x86_64
pkgconfig_|-x86_64
plymouth_|-x86_64
plymouth-core-libs_|-x86_64
plymouth-scripts_|-x86_64
policycoreutils_|-x86_64
polkit_|-x86_64
popt_|-x86_64
postfix_|-x86_64
ppl_|-x86_64
ppp_|-x86_64
procps_|-x86_64
psmisc_|-x86_64
pth_|-x86_64
pygpgme_|-x86_64
python_|-x86_64
python-argparse_|-noarch
python-iniparse_|-noarch
python-libs_|-x86_64
python-psutil_|-x86_64
python-pycurl_|-x86_64
python-setuptools_|-noarch
python-urlgrabber_|-noarch
ql2100-firmware_|-noarch
ql2200-firmware_|-noarch
ql23xx-firmware_|-noarch
ql2400-firmware_|-noarch
ql2500-firmware_|-noarch
qperf_|-x86_64
qt3_|-x86_64
rdma_|-noarch
readline_|-x86_64
readline-devel_|-x86_64
redhat-logos_|-noarch
rootfiles_|-noarch
rp-pppoe_|-x86_64
rpcbind_|-x86_64
rpm_|-x86_64
rpm-libs_|-x86_64
rpm-python_|-x86_64
rpmforge-release_|-x86_64
rsync_|-x86_64
rsyslog_|-x86_64
rt61pci-firmware_|-noarch
rt73usb-firmware_|-noarch
sed_|-x86_64
selinux-policy_|-noarch
selinux-policy-targeted_|-noarch
setup_|-noarch
shadow-utils_|-x86_64
shared-mime-info_|-x86_64
slang_|-x86_64
sqlite_|-x86_64
sqlite-devel_|-x86_64
strace_|-x86_64
sudo_|-x86_64
sysstat_|-x86_64
system-config-firewall-base_|-noarch
sysvinit-tools_|-x86_64
tar_|-x86_64
tcp_wrappers-libs_|-x86_64
tcpdump_|-x86_64
tmux_|-x86_64
traceroute_|-x86_64
tree_|-x86_64
tzdata_|-noarch
udev_|-x86_64
unrar_|-x86_64
unzip_|-x86_64
upstart_|-x86_64
usbutils_|-x86_64
ustr_|-x86_64
util-linux-ng_|-x86_64
vim-common_|-x86_64
vim-enhanced_|-x86_64
vim-filesystem_|-x86_64
vim-minimal_|-x86_64
wget_|-x86_64
which_|-x86_64
wpa_supplicant_|-x86_64
wqy-zenhei-fonts_|-noarch
xinetd_|-x86_64
xorg-x11-drv-ati-firmware_|-noarch
xorg-x11-xauth_|-x86_64
xz_|-x86_64
xz-libs_|-x86_64
xz-lzma-compat_|-x86_64
yum_|-noarch
yum-metadata-parser_|-x86_64
yum-plugin-fastestmirror_|-noarch
yum-utils_|-noarch
zd1211-firmware_|-noarch
zip_|-x86_64
zlib_|-x86_64
zlib-devel_|-x86_64
2016-01-21 16:10:36,098 [salt.loaded.int.module.cmdmod][INFO ][22615] Executing command "repoquery --plugins --queryformat '%{NAME}_|-%{VERSION}_|-%{RELEASE}_|-%{ARCH}_|-%{REPOID}' --disablerepo='*' --enablerepo='saltstack' --all --quiet --whatprovides python-backports-ssl_match_hostname python-chardet PyYAML python-six libyaml salt-minion python-jinja2 python-futures python-babel python-backports python-urllib3 python-requests python-msgpack python-tornado python-markupsafe zeromq python-zmq salt python-crypto" in directory '/root'
2016-01-21 16:10:36,301 [salt.state ][ERROR ][22615] The following package(s) were not found, and no possible matches were found in the package db: PyYAML, libyaml, python-babel, python-backports, python-backports-ssl_match_hostname, python-chardet, python-crypto, python-futures, python-jinja2, python-markupsafe, python-msgpack, python-requests, python-six, python-tornado, python-urllib3, python-zmq, salt, salt-minion, zeromq
2016-01-21 16:10:36,302 [salt.state ][INFO ][22615] Completed state [salt-minion] at time 16:10:36.301789
2016-01-21 16:10:36,304 [salt.loader ][TRACE ][22615] Loaded json_out as virtual json
2016-01-21 16:10:36,304 [salt.utils.lazy ][DEBUG ][22615] LazyLoaded json.output
2016-01-21 16:10:36,305 [salt.output ][TRACE ][22615] data = {'local': {'fun_args': ['/tmp/.root_214a90_salt/salt_state.tgz', 'test=True', 'pkg_sum=11c3f0703b7ebf79d6b019540144943f', 'hash_type=md5'], 'jid': '20160121161034188063', 'return': {'pkgrepo_|-salt_minion_|-saltstack_|-managed': {'comment': "Package repo 'saltstack' will be configured. This may cause pkg states to behave differently than stated if this action is repeated without test=True, due to the differences in the configured repositories.", 'name': 'saltstack', 'start_time': '16:10:34.347775', 'result': None, 'duration': 7.8209999999999997, '__run_num__': 1, 'changes': {}}, 'pkg_|-salt_minion_|-salt-minion_|-installed': {'comment': 'The following package(s) were not found, and no possible matches were found in the package db: PyYAML, libyaml, python-babel, python-backports, python-backports-ssl_match_hostname, python-chardet, python-crypto, python-futures, python-jinja2, python-markupsafe, python-msgpack, python-requests, python-six, python-tornado, python-urllib3, python-zmq, salt, salt-minion, zeromq', 'name': 'python-crypto', 'start_time': '16:10:34.839711', 'result': False, 'duration': 1462.078, '__run_num__': 2, 'changes': {}}, 'file_|-salt_minion_|-/etc/salt/minion_|-managed': {'comment': 'One or more requisite failed: salt-minion.salt_minion', '__run_num__': 3, '__sls__': 'salt-minion', 'changes': {}, 'result': False}, "cmd_|-salt_minion_|-rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'_|-run": {'comment': 'unless execution succeeded', 'name': "rpm --import 'https://repo.saltstack.com/yum/redhat/6/x86_64/latest/SALTSTACK-GPG-KEY.pub'", 'duration': 40.475999999999999, '__run_num__': 0, 'start_time': '16:10:34.232734', 'skip_watch': True, 'changes': {}, 'result': True}, 'service_|-salt_minion_|-salt-minion_|-running': {'comment': 'One or more requisite failed: salt-minion.salt_minion', '__run_num__': 4, '__sls__': 'salt-minion', 'changes': {}, 'result': False}}, 'retcode': 0, 'fun': 'state.pkg', 'id': 'staging-sap-1', 'out': 'highstate'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment