saltstack / salt

Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package repository here:
https://repo.saltproject.io/
Apache License 2.0
14.15k stars 5.47k forks source link

pillar data not generating properly and taking un-usually longer #20352

Closed spareslant closed 6 years ago

spareslant commented 9 years ago

Hi, I have been able to generated pillar data successfully using py renderer. However it is not working fully in following scenario. And it takes ages to return. Following is the pillar sls file
random_tests/init.sls

#!py
import os, sys, salt.client, yaml, os.path
local = salt.client.LocalClient()
topology_config={'currentcluster' : []}
gdp_list = ['machine01', 'machine02', 'machine03']
def run():
  for gdp in gdp_list:
    cpu = local.cmd(gdp, 'grains.item', ['num_cpus'], expr_form='pcre', timeout=50)
    #cpu = local.cmd(gdp, 'cmd.run', ['cat /proc/cpuinfo | egrep -i processor | wc -l'], expr_form='pcre', timeout=50)
    topology_config['currentcluster'].append(cpu)
  return topology_config
if __name__ == '__main__':
  print(run())

top.sls inside pillar_root

somedc:
  '*':
    - common
  '^.+clusterCentralBox.+$':
    - match: pcre
    - random_tests

Please note that common/init.sls is empty.

Following command was run to generate/view/refresh pillar data.

time salt -E 'clusterCentralBox' pillar.items -t 5000

Following is the output from above command.

clusterCentralBox:
    ----------
    currentcluster:
        |_
          ----------
          machine01:
              ----------
              num_cpus:
                  24
        |_
          ----------
        |_
          ----------
    master:
        ----------
        __role:
            master
        auth_mode:
            1
        auto_accept:
            False
        cachedir:
            /var/cache/salt/master
        cli_summary:

Time taken to complete above command.

real    1m52.659s
user    0m1.496s
sys 0m0.202s

However when I run above pillar sls simply as python executable, it is very fast and generate proper data.

time python random_tests/init.sls
{'currentcluster': [{'machine01': {'num_cpus': 24}}, {'machine02': {'num_cpus': 24}}, {'machine03': {'num_cpus': 24}}]}

real    0m2.465s
user    0m0.343s
sys 0m0.053s

Info about salt versions:

salt --versions-report
           Salt: 2014.7.0
         Python: 2.6.6 (r266:84292, Jul 10 2013, 22:48:45)
         Jinja2: 2.2.1
       M2Crypto: 0.20.2
 msgpack-python: 0.1.13
   msgpack-pure: Not Installed
       pycrypto: 2.0.1
        libnacl: Not Installed
         PyYAML: 3.10
          ioflo: Not Installed
          PyZMQ: 14.3.1
           RAET: Not Installed
            ZMQ: 3.2.4
           Mako: Not Installed

Note: Real hostnames have been substituted with dummy hostnames in above outputs/commands

basepi commented 9 years ago

I think you're misunderstanding how pillar data is generated.

When the master is instructed to refresh pillar data, it will run the refresh on a per minion basis. So it will run your python file once per minion. And each of those runs will run multiple jobs through LocalClient.

Even if you only target a single minion with pillar.items, I'm pretty sure a full refresh of all minions is triggered. This is because jobs in salt are published to all minions, who then decide if they match the target and should execute. So for a pillar job, it just refreshes all minions just in case. I'm guessing that's where your slowdowns are coming from.

spareslant commented 9 years ago

Ok thanks for explanation. I have following points.

  1. I thought pillar refresh is being filtered
    • via command line host argument and then
    • via top.sls (inside pillar_root ).

But it seems I am wrong as per above explanation.

2) pillar refresh occur on every minion but pillar data is available based on filtering provided by top.sls (inside pillar_root) . Is this statement correct ? 3) I have an impression that, even if I use `salt '*' pillar.items , pillar refresh will occur selectively based on top.sls file.

e.g. consider following top.sls inside pillar_root.

somedc:
  '*':
    - common
  'machine01':
    - machine01_customizations
  'machine02':
    - machine02_customizations

In above top.sls , as per my understanding , salr '*' pillar.items command will not run pillar refresh of machine02_customizations on machine01. I think I am wrong here ?

I have different kind of boxes in my environment. And I am generating quite a good amount of pillar data dynamically for each type of box and then filtering them using top.sls file. I believe that filtering is working . I cannot see all the data generated by various pillars sls files on every minion. It is definitely filtered using top.sls and I am getting expected results.

It is the above mentioned case that I am not getting expected results and taking too longer to execute.

basepi commented 9 years ago
  1. When a minion's pillar is refreshed, it will only run the files specified for that minion in the top.sls file.
  2. Correct
  3. You are correct, machine02_customizations would not be run on machine01.

How many minions are targeted by your '^.+clusterCentralBox.+$' PCRE match? Additionally, could you try removing the common pillar just to make sure that it's not contributing to the amount of time it's taking?

spareslant commented 9 years ago

'^.+clusterCentralBox.+$' matches only two machines.

There is nothing in "common" . its empty file. I have kept it just for the sake of any future additions/customization.

It is the induction of following statement, that is creating problem.

cpu = local.cmd(gdp, 'grains.item', ['num_cpus'], expr_form='pcre', timeout=50)

If I replace it with some static data, it works very fine.

basepi commented 9 years ago

Right, that's the line I figured was causing the slowdowns. I'm just a little surprised that it causes such substantial slowdowns as compared to running the script by itself.

basepi commented 9 years ago

I wonder if we could import logging here or something in order to figure out how many times it's running this file when you run your pillar.items command.

spareslant commented 9 years ago

ok, I will get some logging here . I have to filter out some production hostnames from that logging.

spareslant commented 9 years ago

I ran the test again using following command.

salt -E 'prefix_g1dpm01' pillar.items -t 5000

Following is the top.sls file.

mydc:
  '*':
    - common
  '^.+g1dpm.+$':
    - match: pcre
    - random_tests

Following is salt-master config file.

interface: 0.0.0.0
log_level: debug
keep_jobs: 72
worker_threads: 10
file_roots:
  mydc:
    - /srv/salt/mydc/states

pillar_roots:
  quincy:
    - /srv/salt/mydc/pillar

Following is the random_tests/init.sls

#!py

import os, sys, salt.client, yaml, os.path
local = salt.client.LocalClient()
topology_config={'currentcluster' : []}

gdp_list = ['prefix_c1gdp01', 'prefix_c1gdp02', 'prefix_c1gdp03', 'prefix_c1gdp04'] 

def run():
  for gdp in gdp_list:
    cpu = local.cmd(gdp, 'grains.item', ['num_cpus'], expr_form='pcre', timeout=50)
    #cpu = local.cmd(gdp, 'cmd.run', ['cat /proc/cpuinfo | egrep -i processor | wc -l'], expr_form='pcre', timeout=50)
    topology_config['currentcluster'].append(cpu)
    #topology_config['currentcluster'].append({gdp: '24'})
  return topology_config
  #return cpu

if __name__ == '__main__':
  print(run())

Following is the output generated:

prefix_dpm01.customized.domain:
    ----------
    _errors:
        - Rendering SLS 'random_tests' failed. Please see master log for details.
    master:
        ----------
        __role:
            master
        auth_mode:
            1
        auto_accept:
            False
        cachedir:
            /var/cache/salt/master
        cli_summary:
            False
        client_acl:
            ----------
        client_acl_blacklist:
            ----------
        cluster_masters:
        cluster_mode:
            paranoid
        conf_file:
            /etc/salt/master
        config_dir:
            /etc/salt
        cython_enable:
            False
        daemon:
            True
        default_include:
            master.d/*.conf
        enable_gpu_grains:
            False
        enforce_mine_cache:
            False
        enumerate_proxy_minions:
            False
        environment:
            None
        ext_job_cache:

        ext_pillar:
        extension_modules:
            /var/cache/salt/extmods
        external_auth:
            ----------
        failhard:
            False
        file_buffer_size:
            1048576
        file_client:
            local
        file_ignore_glob:
            None
        file_ignore_regex:
            None
        file_recv:
            False
        file_recv_max_size:
            100
        file_roots:
            ----------
            mydc:
                - /srv/salt/mydc/states
        fileserver_backend:
            - roots
        fileserver_followsymlinks:
            True
        fileserver_ignoresymlinks:
            False
        fileserver_limit_traversal:
            False
        gather_job_timeout:
            5
        gitfs_base:
            master
        gitfs_env_blacklist:
        gitfs_env_whitelist:
        gitfs_insecure_auth:
            False
        gitfs_mountpoint:

        gitfs_passphrase:

        gitfs_password:

        gitfs_privkey:

        gitfs_pubkey:

        gitfs_remotes:
        gitfs_root:

        gitfs_user:

        hash_type:
            md5
        hgfs_base:
            default
        hgfs_branch_method:
            branches
        hgfs_env_blacklist:
        hgfs_env_whitelist:
        hgfs_mountpoint:

        hgfs_remotes:
        hgfs_root:

        id:
            prefix_dpm01.customized.domain
        interface:
            0.0.0.0
        ioflo_console_logdir:

        ioflo_period:
            0.01
        ioflo_realtime:
            True
        ioflo_verbose:
            0
        ipv6:
            False
        jinja_lstrip_blocks:
            False
        jinja_trim_blocks:
            False
        job_cache:
            True
        keep_jobs:
            72
        key_logfile:
            /var/log/salt/key
        keysize:
            4096
        log_datefmt:
            %H:%M:%S
        log_datefmt_logfile:
            %Y-%m-%d %H:%M:%S
        log_file:
            /var/log/salt/master
        log_fmt_console:
            [%(levelname)-8s] %(message)s
        log_fmt_logfile:
            %(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s
        log_granular_levels:
            ----------
        log_level:
            debug
        loop_interval:
            60
        maintenance_floscript:
            /usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo
        master_floscript:
            /usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo
        master_job_cache:
            local_cache
        master_pubkey_signature:
            master_pubkey_signature
        master_roots:
            ----------
            base:
                - /srv/salt-master
        master_sign_key_name:
            master_sign
        master_sign_pubkey:
            False
        master_tops:
            ----------
        master_use_pubkey_signature:
            False
        max_event_size:
            1048576
        max_minions:
            0
        max_open_files:
            100000
        minion_data_cache:
            True
        minionfs_blacklist:
        minionfs_env:
            base
        minionfs_mountpoint:

        minionfs_whitelist:
        nodegroups:
            ----------
        open_mode:
            False
        order_masters:
            False
        outputter_dirs:
        peer:
            ----------
        permissive_pki_access:
            False
        pidfile:
            /var/run/salt-master.pid
        pillar_opts:
            True
        pillar_roots:
            ----------
            mydc:
                - /srv/salt/mydc/pillar
        pillar_source_merging_strategy:
            smart
        pillar_version:
            2
        ping_on_rotate:
            False
        pki_dir:
            /etc/salt/pki/master
        preserve_minion_cache:
            False
        pub_hwm:
            1000
        publish_port:
            4505
        publish_session:
            86400
        queue_dirs:
        raet_main:
            True
        raet_mutable:
            False
        raet_port:
            4506
        range_server:
            range:80
        reactor:
        reactor_refresh_interval:
            60
        renderer:
            yaml_jinja
        rep_hwm:
            50000
        ret_port:
            4506
        root_dir:
            /
        rotate_aes_key:
            True
        runner_dirs:
        saltversion:
            2014.7.0
        search:

        search_index_interval:
            3600
        serial:
            msgpack
        show_jid:
            False
        show_timeout:
            False
        sign_pub_messages:
            False
        sock_dir:
            /var/run/salt/master
        sqlite_queue_dir:
            /var/cache/salt/master/queues
        ssh_passwd:

        ssh_port:
            22
        ssh_sudo:
            False
        ssh_timeout:
            60
        ssh_user:
            root
        state_aggregate:
            False
        state_auto_order:
            True
        state_events:
            False
        state_output:
            full
        state_top:
            salt://top.sls
        state_verbose:
            True
        svnfs_branches:
            branches
        svnfs_env_blacklist:
        svnfs_env_whitelist:
        svnfs_mountpoint:

        svnfs_remotes:
        svnfs_root:

        svnfs_tags:
            tags
        svnfs_trunk:
            trunk
        syndic_event_forward_timeout:
            0.5
        syndic_master:

        syndic_max_event_process_time:
            0.5
        syndic_wait:
            5
        timeout:
            5
        token_dir:
            /var/cache/salt/master/tokens
        token_expire:
            43200
        transport:
            zeromq
        user:
            root
        verify_env:
            True
        win_gitrepos:
            - https://github.com/saltstack/salt-winrepo.git
        win_repo:
            /srv/salt/win/repo
        win_repo_mastercachefile:
            /srv/salt/win/repo/winrepo.p
        worker_floscript:
            /usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo
        worker_threads:
            10
        zmq_filtering:
            False

Following are the logs from master (set to debug) In the following output you might see error

EauthAuthenticationError: Failed to authenticate!  This is most likely because this user is not permitted to execute commands, but there is a small possibility that a disk error occurred (check disk/inode usage).

I am 100% sure there is no disk errors. inode and disk space is perfectly fine. Also gdp_list array in random_tests/init.sls file have 4 machines. Reducing it to 2 just works fine.

2015-02-09 12:12:17,659 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:17,659 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp03.customized.domain
2015-02-09 12:12:17,659 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp03.customized.domain
2015-02-09 12:12:17,896 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp03.customized.domain', '_stamp': '2015-02-09T12:12:17.896159', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8H+qA3CZUGzOb2ApgiaL\nGInPpjEZhVYW0dHakicELl0zh9ivGnrmmN1D64HTLLg25QFO0XeoGrqtMBXDdFsB\nrP1hkAU1ApfSte6kf7DTJe5K3MrM9gvprsKndVNEFC5WAVOm1M+psHSlhw5EwzhB\n6YRDFsofUvYT4oOIuK/0B5BrBAp4+Ivm9BLUilDwJ/kcASYOInONT4n+zf91uVtK\nZJBxtr6c0/gO63cXv2wRaZwNksTM09Eu2bwKU/R6akKJfpiFbLaJkU7l9Ql8BTHT\ndwDEORJ5z+7FODFZBw3/MxRdCD4bWSWCu5jCQiZ6MeYzMsKLlvv7C3hIf7o/d2Y+\nPguuG0wlkNOM87yU3sTbpJrU6ZRHstbbBxDLFh+Deg0iWQp3lkI5Rw+gDWFGoLg/\nESxcHU1yU0XHDNaBdDH14DZDpJbY8twhhjrOTAld/0JSP/KucWdXGuSgFeKEBYWT\nAYAOo5sJHI44Iisw6wZ/DFdV2BD95BakR0TjVvNz6+1+FXvNZLLf9LYuzDCYZvHL\nHU+rdMDmdsCiRS3EkwZMznt6pWgxUx2bZ7KajnWsknEi4F3aa1s6MGkyq1wJ3ndg\ng/pUYPz4YtFuTJ1TsDn2MavBDAw22+UVijy72h68unSARCMFljbXtPzbzdgzD/iH\nh/17FHXLKbQaFkVHZfW8hUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:18,572 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:18,573 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp03.customized.domain
2015-02-09 12:12:18,573 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp03.customized.domain
2015-02-09 12:12:18,789 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp03.customized.domain', '_stamp': '2015-02-09T12:12:18.788890', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8H+qA3CZUGzOb2ApgiaL\nGInPpjEZhVYW0dHakicELl0zh9ivGnrmmN1D64HTLLg25QFO0XeoGrqtMBXDdFsB\nrP1hkAU1ApfSte6kf7DTJe5K3MrM9gvprsKndVNEFC5WAVOm1M+psHSlhw5EwzhB\n6YRDFsofUvYT4oOIuK/0B5BrBAp4+Ivm9BLUilDwJ/kcASYOInONT4n+zf91uVtK\nZJBxtr6c0/gO63cXv2wRaZwNksTM09Eu2bwKU/R6akKJfpiFbLaJkU7l9Ql8BTHT\ndwDEORJ5z+7FODFZBw3/MxRdCD4bWSWCu5jCQiZ6MeYzMsKLlvv7C3hIf7o/d2Y+\nPguuG0wlkNOM87yU3sTbpJrU6ZRHstbbBxDLFh+Deg0iWQp3lkI5Rw+gDWFGoLg/\nESxcHU1yU0XHDNaBdDH14DZDpJbY8twhhjrOTAld/0JSP/KucWdXGuSgFeKEBYWT\nAYAOo5sJHI44Iisw6wZ/DFdV2BD95BakR0TjVvNz6+1+FXvNZLLf9LYuzDCYZvHL\nHU+rdMDmdsCiRS3EkwZMznt6pWgxUx2bZ7KajnWsknEi4F3aa1s6MGkyq1wJ3ndg\ng/pUYPz4YtFuTJ1TsDn2MavBDAw22+UVijy72h68unSARCMFljbXtPzbzdgzD/iH\nh/17FHXLKbQaFkVHZfW8hUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:19,238 [salt.master                                ][INFO    ] AES payload received with command _mine
2015-02-09 12:12:54,757 [salt.master                                ][INFO    ] Clear payload received with command publish
2015-02-09 12:12:54,759 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.prep_jid
2015-02-09 12:12:54,760 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'_stamp': '2015-02-09T12:12:54.759504', 'minions': ['prefix_dpm01.customized.domain']}
2015-02-09 12:12:54,760 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121254758939', 'tgt': 'prefix_dpm01', '_stamp': '2015-02-09T12:12:54.760023', 'user': 'root', 'arg': [], 'fun': 'pillar.items', 'minions': ['prefix_dpm01.customized.domain']}
2015-02-09 12:12:54,761 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121254758939', 'tgt': 'prefix_dpm01', '_stamp': '2015-02-09T12:12:54.760476', 'user': 'root', 'arg': [], 'fun': 'pillar.items', 'minions': ['prefix_dpm01.customized.domain']}
2015-02-09 12:12:54,761 [salt.master                                ][INFO    ] User root Published command pillar.items with jid 20150209121254758939
2015-02-09 12:12:54,762 [salt.master                                ][DEBUG   ] Published command details {'tgt_type': 'pcre', 'jid': '20150209121254758939', 'tgt': 'prefix_dpm01', 'ret': '', 'user': 'root', 'arg': [], 'fun': 'pillar.items'}
2015-02-09 12:12:54,995 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:54,995 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp06.customized.domain
2015-02-09 12:12:54,995 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp06.customized.domain
2015-02-09 12:12:54,996 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:54,996 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:54,996 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp05.customized.domain
2015-02-09 12:12:54,996 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp15.customized.domain
2015-02-09 12:12:54,997 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp05.customized.domain
2015-02-09 12:12:54,997 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp15.customized.domain
2015-02-09 12:12:54,999 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:54,999 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp09.customized.domain
2015-02-09 12:12:54,1000 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp09.customized.domain
2015-02-09 12:12:55,187 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp05.customized.domain', '_stamp': '2015-02-09T12:12:55.186549', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyZ6RMcrLmphCYgboLjQK\nbbofuWJgXGAfP6tfSLKvUza8f9e3zHzvqBvS3NZRmy7FOISQle+kPGckoowVF9po\nHVJ7HjjJuvG/tyMp7Qx/78HsWrObS0aZD1vm8hH8omZlWawu8LK4nZ6V7vhRUeXf\nwYj2RvIIDBtWeUAu8P8R9CjzGh/FeLPY/1j/N9BEumX/HKSmKi9WZFSFw0bBb7iM\n4b586wq+9wyaVhfAxp2QvGxO5XeFyj7OXcGSiUNuPvkb9lx51AVEqYTg5HSnPl4E\nlxcMQpIyjZrEU/nFGqpI+4guOxNh4RyoGXMpXD2HZbiiCysXzegP0vRERxGx6wps\nqs/UDwq8eIjufb4wh3aZ5a9wiSd0J09/IOFgs1CacuPT6fG+rEXiiCUwqYwt/RIV\n+yNaPT3hP2LoVlEZgehRn7TYwbJWkEW/OJmveDjKYEc8r0NKPQQuIzDFoqKu1JmN\nMaVbyuLSS/AORBLs7vjISpbU7tL5Es4uJCH4fOiudGYhiCqOBiGxSOyZEOVMpI+D\nDUwLk392nr7X0MelHYZSq9RKW5oQJRRcH/QN5dFW+7Wqnzu2mqoW/EiZIt8MuHS+\njxxL+h0If9zK8h2GACEa71jsjnH5sf96J0PFtkInRQ4ToWb7UdAG1xQiix61MAS3\nPgxi3fPP1Re7dr8NrCdRRJcCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:55,188 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp06.customized.domain', '_stamp': '2015-02-09T12:12:55.187462', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv3ageAAvuwNTtTDuwMyi\n919VbCAa4iVxWGZYGEhaBnR7XSlIT4iA2jOpuNYZoqclchFxx2GsL/bl7tC9ShjW\n5IlTq4RfmiTSYR67Dx3LYKAuqHGxpL4qz+8SCiYfY5IJT7r/2LOmvIQVnPLzA6Jc\neQeyYig3QqyXd+aN/ekAaJsAe6nC5on5kWoHVhYGITo1RO85lgIJVkYMMEK/QvLM\npcQunT1mYhKUgxjWegVjpyHeDAV1VDiKk6l7FNPUzjDlxUvJcs/tdon7Z0pEJulj\n8EwlqAADUN0+1fgtITkRyf0Eln2ngSu+AjriUdOKSpVwkfuJXeVGvU3VFgBjOeur\nP0kIUn3ZoNLTiYra2JDn0VbvWd94BZudL0QZRbRqbTx8TPamZzR+L6Gaip1T+PFE\nO7B5ri/pV9G50SX+T9e/pnYZaLIoCpy1SoowbhvKSg8yPYcK2p9Dom2h3mAjzU2t\nucHNIOapiEO0tJWPwNDLTN4EPDJzJrgARaPz9qI5zqH51+eyfg22lrtoLdvRcMUp\nRyqSGvF2rJfqQLeD0omxgDUoMFGyn6OsVt5lx9NMJxaATTx8SnDg4aqhmJc85YDj\n8KqpQb2Jb7HHa4TSrekRHDlBaS6H4TKYE5KVyFJlrJep0dy0/GwzktWbYzsBkyoU\n3tEp7MSxfQGUA+gtlFZX/vcCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:55,189 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp15.customized.domain', '_stamp': '2015-02-09T12:12:55.188492', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA952D2QCnAjSKtQuxuinm\nsINaJe/dAFYyHMUaPIy08p1p/+IBumvN19D8v84JmRbcbwiacxbZYJuK93i9Yqfu\nXCMcN19AqHfRsCbF9itvs7HcPQwbMlr4hixIwqrDWvCLYkmt9Hgbd2efGk+IYynd\n+FmslcZjcIDxMNw89z9IroPYgVnTdL5osvwXLRJTnUrs+tUYaEXStBOWEG6hY4qN\nvyJ6UsqmZVtlQS0PIF16Tvsac1jMOrXQd/uJDwgPHzxWaGheUyvWDFqHD2UoKuL0\nUMFbdAtXXzorRCzW6BEWUbecILbv8pJrLwjhj1SDAIEDl8YHFW8DEHCpJ2YoTDi/\niAjCMW5OQYuYGEQxGRD6MvK352HxyQ9H+NncJ/v2unXciCbOY3RhVX/FeFci9tZd\nEWc8rp6d3yGAFJ2Pv7iY0ZtKsRh3zPzNlcGdJp6fwFiQ/b4dykxukApZJF+P8bWQ\nW/OEoyPn+S8hkgsJp+i6SXG3p3+/AtgeZQl0XgKJ4x8Ll3jbcipV0Iq/L1glXB02\nzc7mpuTrShuziAy2XUFU1Gr1HRt7pPqhbse0HE2VINM4aqeSx3AlVm+kbQRcNAwU\nkDf1PnsnOHDIGZd6Gv8ZOCgsdWRlIs7GH2hiR3ubz2d/Q5dXVYKjD1pMrxcLml4b\n8KgEudgIxcPmcS3PprIUkOkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:55,190 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp09.customized.domain', '_stamp': '2015-02-09T12:12:55.189435', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0mAbSZFeypiCyMk/GVQA\nH2eQLYu4BR3Ez3QCtutKwZOl7tqEXHEgEanrgCiAsa4Fni/Wxbwt1B77HOTmg1MA\nbqk3Ya0vk/SxL/VPq8ZHqrPLYSl3s7gibovb0zUVCNz5/y4tULo2dDiGjajWZdnk\nuQVGDvrmS1IcsBSALfoT4UmvsT9e/8oWJCidYYnhSK4MMtl5nmHptQ8DajR3+Q2G\nO3PO3BW2bkY5TVIUbOGRj01Ics0RuSJP04Zgb54ZsgRf0hRyuGTAiwPRo9ZWmOzL\nm5ANu8wButxWGf6tlnpXwRj4V5Wie2G8brvZiCxdibUlXZdguocQ4ic3fUWHwUBi\njp5xX2096JrZtqFwJJygFOg6C1VCtTqOac51sJlHjj2uEKkIzVLLatrVcVSs4v9X\niwEenCFx0vo1DiRDuMT0veIp/LMczSf/0cbsxdwgyWJlGvBD71GvwQyJJxgxtf5T\nbPtu0QUUeOXrzyMmuUUKGuJMOo6AkOlDJQktHXEnbW/6qZs8Bh5qaQ9EtfnVNYPk\nMV3tlV+P9WflVOtLpeHvK2liMcFpCZnDDfk9ODHwiAYBwRSVqA3RLiNcxRTyEOj0\nPcnWj7+lNnwZ4wtlH4G4nbk9j75cIeTNDbRpxjpdp7VnylVsG2yLMTGs3EZjMSiW\nfQFRztCUD4BzrsMTqoYi6nkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:57,892 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:57,893 [salt.master                                ][INFO    ] Authentication request from prefix_dat01.customized.domain
2015-02-09 12:12:57,893 [salt.master                                ][INFO    ] Authentication accepted from prefix_dat01.customized.domain
2015-02-09 12:12:57,998 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:57,998 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp14.customized.domain
2015-02-09 12:12:57,998 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:57,999 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp13.customized.domain
2015-02-09 12:12:57,999 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp14.customized.domain
2015-02-09 12:12:57,999 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp13.customized.domain
2015-02-09 12:12:58,072 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_dat01.customized.domain', '_stamp': '2015-02-09T12:12:58.071778', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtZlxwPrrq7SczPQe49wp\nEK6Opy6ae3BHm6ht4FaLEVzxiTmMGEUvoPWEkUaJpd0sRWN7aIRrno+GwzR34uCx\nzuuj1C4At+KsKjbUNJRqyQXXh/q+b6kXo2YEdet40sj28pvUfTz2krefWnY8Bf0S\nZHLcN1t53VKItPxEVv+DnLm4EsZ4briiigqas7um3LR5c3cpbZ518Jqe1znEXXBz\naMj4z5b3ksX7KpnTRYpuR1Rp+kaOHZFok61dpPk2e6H45m/L+YJ8xVzCqIEdi+nu\nHgxJlth2Lvc55uZamwZkh86ls63TLDUTtGy5dwdkbqI8RLrGuy/kEcddGFlaz8F2\nkbe00Qcs2vt/ZHjUzmaQRH1CD3YLfFUDde1gyJdoLSXo9jRMGL5wQYdTTbi3CBvm\npvkhwK7E9ajNHFDpV3FLNR/zWKgkLVAfN74wUrccwH6PDltrBZwAnSghe9Oowmst\noOaP5DXdFH8SZpc524/gzitRl9vF2RZiiz/RjrNDaesSR9Z6mL4e0INe6xseH9j6\nzXWn3Ed7n4j6TewXZ0BV2mUYNlPZ4ygCD1aizIrQlf9HtP8FQQIGAWTDD9Xa+r5x\n3ICDZQj1KPktoH+LfCbBAzBXmN/G+kpaEz+C+djywdJwXHyyPji2uXLQQeHskFqg\nHNTLls+E+bke6jYdUXmJEF0CAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:58,160 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp14.customized.domain', '_stamp': '2015-02-09T12:12:58.159134', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAn9ce/u6l3AosTMz/clC/\nYMDEJ/I28QpoQWc6Nba+xkAkzBAZcLVUTCsoPebZhFVi2Y62KkTdZIXt/M0mwHmy\nJ0V/u1JBveI2WGrqAA6AtXhc7hw9yehNfbPEC7bXYgQNEFSPX19KfBj88r+JWdJo\nOHHDPi8Epd6bWLwyPdtaiJqarBZPihhx+K/gr78NR9dRCV1B8vfjr3SIop8bsWBA\nwrtahASjpt5ttN7QOgMjwuKQVhEGqy/CMPftg+b5SkRWiztnidFijWK3cisa1AR4\n5EZay2nWStbyvajmYoK/2IBHSPsS5pdaItD18ZUosGlN2UULJ2f0xPQlxsdljRqw\nFIEB/Dup4mLSZsTmjGwNuBNWzQkP9VYu+OSKzyittBtmNtObapDSThJuWXInmI81\nJzYGb6Oo3avOMC1zAOaOiol8U76jBEowkA7KJRqDAlfIJh/F4RdatgpvORPoCL3K\nSMP0rp+wAcrnsW+iur+pdALHwjCBm1u2lqAqsROKa2lFnlw2f5+eOnpRY5HdpkNJ\nfN+9WkN3d/Y367pewu4fTpt16QMJhuiFXmMrfI4TvyXrB01adKfvuSiLwDJRXa4/\nP8mW/y0aXp355LgvPdDfWe6NEMZ6peenbFJ8eowgQITuw35K0B4bm2Lzs2x5hZAD\naxtza6CSHHUOXeQB2npJyoECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:58,188 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp13.customized.domain', '_stamp': '2015-02-09T12:12:58.187947', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsN3lhFNNzpI3wFTlHaRG\n/z1Yg82ZhtxYPjj6DckXyujYPSL1sE9cGhlHjMCd2RadaemiNQE+Ywdhcs741B2j\nMftq4MARE9cK4RlVEw7ShxjqSOBLK6d7WG6yBGPhPlsIWcSygJzT/Rcmvmo7WbLe\n1ebRZdVfo1NsTSKXDgnXkTR4mIOf7Ve89f4SbO1LaTE7c8Vn56D262NxswRahx7p\nxdjwbCAiSZS2A49pSl7HFKgaH+3POy/vBgxValdXG09v3fB9SEuqqJudMPv5l2M4\nkyodooguYyEpnnQwotTc/cangszOrBycXc0u7HCfqMiIKxrSxscpIAzLl6/ScMC+\n4JlRorBpPvzocrO3eOs5F2SON3SvmW2EVUO+m3OwAm3+TWfPUE+vBFZoiSw4iQM9\nHu9XRbdY4fMVsoKkdjMisfwHo7w/D/hPhptsBlFSJi41DcEIdu6IVAJ0QA+MClTp\nTb9DZtE6LMJ3uHfp7EbX2LEY58Q4fHD/qIu+0oqOF6k38J23g08vXZORhUKo3I/M\n9gbVt6WzV4t/0SJAu2hyPDbTg/CW3otLKkuGlrpPEH3+gZBs3GQrBY8B/BXOUIlb\nALLJKHzpG9cVMZ1rKxB6tb2d2kQwLsDCxWMRIkmo9gCbZpj/XP7n5ijv5IhsKuRV\n5IGxoCn+a6GsvaxzFknchCECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:58,895 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:58,895 [salt.master                                ][INFO    ] Authentication request from prefix_eps01.customized.domain
2015-02-09 12:12:58,896 [salt.master                                ][INFO    ] Authentication accepted from prefix_eps01.customized.domain
2015-02-09 12:12:58,1000 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:59,000 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp08.customized.domain
2015-02-09 12:12:59,000 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:59,001 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp07.customized.domain
2015-02-09 12:12:59,001 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp08.customized.domain
2015-02-09 12:12:59,001 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp07.customized.domain
2015-02-09 12:12:59,073 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_eps01.customized.domain', '_stamp': '2015-02-09T12:12:59.072512', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvMHGtT52j/sIDX3qQ0w4\nj5YbtqxXzf33NEAeX7IfqDxCXxBbeKYyCUlEJkjcGnphb4T0e4NpBXP6OMQFAgRb\nWhpnxzmtBKwEMnnXRO6g0Vs3LdND9euzshZm928vE34bThUzq8s6zVD4BsqMaigE\nVo1qj3FvMLGXO85NIb9sNBUv//eTvxZFpiyKlBM1d9P2P6nV0Pfw0DTYwE3T9Cox\nGFFXNAMLLb84jP2tUqmpBKYcBW7Gi5NI3Qnp2ucQ0YaTTIHprDzr2AeRiXs9lYRW\nzNEg12r+OJnJxgU/G8yGXJDYVFMCEQE0Q8FoHaEhcNKKzqxXZ/AtauV2iFc+0YPj\nA5CoOnrBuUSoTQLAzO0jfJEUHyPVNdvFJc47NlfmIRSdx5bqcfhYLwz6Soa4iW+y\nkoTrtBxmRQElNDongzQ+8qfUNO4MfU8+g5H9KqUt7dJ7ICaL4FjLZCvggCOtPhgs\na+xDPLhgERM7PHsmMGDb/TnO8ug2yDPQtskbcR6KK5HPncVm5HH6jzAgQMaXeOVg\nxh8uDjtZTzvBN9JWkPMTdE7V5Q80HMxYw3L0yFfFPkUULFpK+dU8DCRocziyyZWT\n0NL+g+sbnYxm82zSH0GLK3Y67lTSpT5Zi71NwiancgN9Iqylp/C+RJ1uAk/3Ddmf\nwUy8Pl+D0VbTM0QvFofgQz0CAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:59,189 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp07.customized.domain', '_stamp': '2015-02-09T12:12:59.188511', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnQH2jUVKU4FbUPcJfSSo\nu6/ZOy48FNnV+raYRI2fwdvaMd5DXIlm8bFeTEnVs6JEqJVlV/G7FPWWFOUYv8PV\nZhUUY26xN2sOGpgL7Vf88pg4D6k0K2YD8tH0gEuHn2ucRUlr6FDarObVdZZgoJaJ\nXJoI4+/dOXPKai4GhGKvXotlJ4fmQ173kJIIDfHlV25CcusMZ6N3QaWlcl7ZoR8b\nWMyl+Gsxq06jO36tgiHC9xQAwbNnLbZE3vDO3c5c8nAXWFVDmtfoWKTQzIgSP35b\nrGyhSMZ+iep89hUvEJo0dqkh2Cud5w7/0lQ4wLaA4haFo0m+8c2qQu789gcfMaM4\n3vajhKku83nwadKLIx1igY2LvZHrZ+OkKp/yQoZUrda/URBlzIofW6GNcXY/g5XT\nbulSTueI2W3WLSkDd/W/cWnY5WLuptRo+I+3rfGdE3Z2bOr052HxTr0Ax92d1L2x\nsWvs1mhhG8dzSjT8AU3jxJzvBszGQIO/bwLXE0UBYF+pdMAS+mAA7Suhi9EiyeFw\ndm5eplbrKarfLZkbcy9/7xLQMgDfT4yjKxjb9r5+djsWsQztV4HplTUyVdoks8ya\ny2KycU9nqEdpMTyY+LCtA4ggF3cqCst7NwoftLvGYABCynPmV79JAMELq97Z6OUp\n5Xk8Dtgy5Xs5fAWgeQP7mYECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:59,191 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp08.customized.domain', '_stamp': '2015-02-09T12:12:59.191316', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAo53VzagWUVf7YWWA44Mg\nGOHcwaewxpb9hKQ42wTVA7DbDLk+puPPW0vJuzvlFw+kgFFRMB9MHhEIgm5/GSyt\n19z0kAa9ciF7wersMRb1Uvw5hqPRtvc6GcrZ/GZu/bRtD9oxVGfJTGGI0GxxBa4h\nScPS/7xyQarwvWd3tugnou6EytiRAC+EUU8gJ7FI0cK9M7+elKrsoLHb4w+Tdeqm\nA15GBwL8ukEU5d/uTQnX5fl1bYArhdQdxDYfczaWr+uCqsK19yWi5cKzgVakYZpg\nC1LYYhy86TpVXZBRdBbRheqKVQQh23jlpDXzE/OWZEzjvJ9DAlA7vDl+BfhzgR4g\nS9hVq8i5X0vXA9cAgZrXZkuhGvwfRvFMmnQhrVofBJyzcSLrZACcDkEYspXh0Gtm\ncKrhuZJ6D4MpJaNT+vSpXTOPYj7VVOd2gsD+2h2FSKitznZRmtydXS/8rKN0ekdQ\nYTgC7vh3ep17sa4JC+ItEwILRjMdYN4HcS4/7nqc+o0cULrwa0OBl0CtqErB3pty\nJ21WPbTI4O6h91h4GHY/7gpsH81Gf3ICoKKXeeRTS50isYel+ga9XhxvkZv5DS2U\nOFIHs+KGtEmTm+kXEzPt0ycoC2TL1qogscesygU6kYxr390JFCztojR7CyoovVvS\n5e2Ot/TGOFwxyXzXsA4ggFECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:12:59,896 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:12:59,897 [salt.master                                ][INFO    ] Authentication request from prefix_dpm01.customized.domain
2015-02-09 12:12:59,897 [salt.master                                ][INFO    ] Authentication accepted from prefix_dpm01.customized.domain
2015-02-09 12:13:00,000 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:00,000 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp03.customized.domain
2015-02-09 12:13:00,001 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp03.customized.domain
2015-02-09 12:13:00,073 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_dpm01.customized.domain', '_stamp': '2015-02-09T12:13:00.072743', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAywUr5IOIPFk/zxXoYGew\ny/53DXmWt10df6LsX40PQ+aaV7EaKNIkDQiRxN+Yk8r5EhHAHBJKfVtaMBvLIqgW\nFNl/kBlijuYueLDrl03axJoCGp8V4xdFDuFahFXcEjF8paToDQ0tecH+TCdK3yGs\nMHJW4tLmelYRGUEfA+skX4/UsikYMVgpltDOQuf+2oplrOe6ZLIL1C9q/CRw6Pt0\n3VuUXW3365JNm1UAfjhGG3N2x2yEtqrv4b1IMf4LBy9+6dsD00YmsyW7R0lhEyI6\nLeQ4DT1nn8rPKwU78Jn/wn2N+30ie5kQtMD71J2HlnkKxWIsnJHhHk8nOAYEe3jA\n3RKriNAYxpPS/jqBTF/ckeVKN0lcFVCb4TCV8F7x0xzrr8G+jNA3HkE7fBpO4E1k\nWWwlAryPL25qcaheRNoQav/Rq/ygXgd0S+eJtLx7ENBsbmGWzlY5KuXdOJVWm2KO\nTIo32cax46wIbRw+gySJsDM7tONFhhplSiBr/5CUHqr2ZPKYsfAHcBpwgMSBS1NX\nw93GN3yjj2/tNhELB0J6ZzTlt2FYNCo5i4baPWQrAL6DKBltGaAlKy40qG/5xAOz\n3lshYd6mV59W5FyXanaCbxs1yJosPGq67ykMl8E93NMFByICRRLvkEFUM3DyRFXj\nsIilJPKWu2O9IvBwtn1dy3UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:00,189 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp03.customized.domain', '_stamp': '2015-02-09T12:13:00.188665', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8H+qA3CZUGzOb2ApgiaL\nGInPpjEZhVYW0dHakicELl0zh9ivGnrmmN1D64HTLLg25QFO0XeoGrqtMBXDdFsB\nrP1hkAU1ApfSte6kf7DTJe5K3MrM9gvprsKndVNEFC5WAVOm1M+psHSlhw5EwzhB\n6YRDFsofUvYT4oOIuK/0B5BrBAp4+Ivm9BLUilDwJ/kcASYOInONT4n+zf91uVtK\nZJBxtr6c0/gO63cXv2wRaZwNksTM09Eu2bwKU/R6akKJfpiFbLaJkU7l9Ql8BTHT\ndwDEORJ5z+7FODFZBw3/MxRdCD4bWSWCu5jCQiZ6MeYzMsKLlvv7C3hIf7o/d2Y+\nPguuG0wlkNOM87yU3sTbpJrU6ZRHstbbBxDLFh+Deg0iWQp3lkI5Rw+gDWFGoLg/\nESxcHU1yU0XHDNaBdDH14DZDpJbY8twhhjrOTAld/0JSP/KucWdXGuSgFeKEBYWT\nAYAOo5sJHI44Iisw6wZ/DFdV2BD95BakR0TjVvNz6+1+FXvNZLLf9LYuzDCYZvHL\nHU+rdMDmdsCiRS3EkwZMznt6pWgxUx2bZ7KajnWsknEi4F3aa1s6MGkyq1wJ3ndg\ng/pUYPz4YtFuTJ1TsDn2MavBDAw22+UVijy72h68unSARCMFljbXtPzbzdgzD/iH\nh/17FHXLKbQaFkVHZfW8hUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:00,292 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:00,292 [salt.master                                ][INFO    ] Authentication request from prefix_dpm01.customized.domain
2015-02-09 12:13:00,293 [salt.master                                ][INFO    ] Authentication accepted from prefix_dpm01.customized.domain
2015-02-09 12:13:00,525 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_dpm01.customized.domain', '_stamp': '2015-02-09T12:13:00.525004', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAywUr5IOIPFk/zxXoYGew\ny/53DXmWt10df6LsX40PQ+aaV7EaKNIkDQiRxN+Yk8r5EhHAHBJKfVtaMBvLIqgW\nFNl/kBlijuYueLDrl03axJoCGp8V4xdFDuFahFXcEjF8paToDQ0tecH+TCdK3yGs\nMHJW4tLmelYRGUEfA+skX4/UsikYMVgpltDOQuf+2oplrOe6ZLIL1C9q/CRw6Pt0\n3VuUXW3365JNm1UAfjhGG3N2x2yEtqrv4b1IMf4LBy9+6dsD00YmsyW7R0lhEyI6\nLeQ4DT1nn8rPKwU78Jn/wn2N+30ie5kQtMD71J2HlnkKxWIsnJHhHk8nOAYEe3jA\n3RKriNAYxpPS/jqBTF/ckeVKN0lcFVCb4TCV8F7x0xzrr8G+jNA3HkE7fBpO4E1k\nWWwlAryPL25qcaheRNoQav/Rq/ygXgd0S+eJtLx7ENBsbmGWzlY5KuXdOJVWm2KO\nTIo32cax46wIbRw+gySJsDM7tONFhhplSiBr/5CUHqr2ZPKYsfAHcBpwgMSBS1NX\nw93GN3yjj2/tNhELB0J6ZzTlt2FYNCo5i4baPWQrAL6DKBltGaAlKy40qG/5xAOz\n3lshYd6mV59W5FyXanaCbxs1yJosPGq67ykMl8E93NMFByICRRLvkEFUM3DyRFXj\nsIilJPKWu2O9IvBwtn1dy3UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:00,600 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:13:00,702 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-09 12:13:00,718 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-09 12:13:00,720 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:13:00,757 [salt.master                                ][INFO    ] AES payload received with command _pillar
2015-02-09 12:13:00,794 [salt.utils.jinja                           ][DEBUG   ] Jinja search path: ['/srv/salt/mydc/pillar']
2015-02-09 12:13:00,801 [salt.template                              ][DEBUG   ] Rendered data from file: /srv/salt/mydc/pillar/top.sls:
mydc:
  '*':
    - common
  '^.+g1dpm.+$':
    - match: pcre
    - random_tests

2015-02-09 12:13:00,805 [salt.loaded.int.render.yaml                ][DEBUG   ] Results of YAML rendering: 
OrderedDict([('mydc', OrderedDict([('*', ['common']), ('^.+g1dpm.+$', [OrderedDict([('match', 'pcre')]), 'random_tests'])]))])
2015-02-09 12:13:00,806 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:13:00,903 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-09 12:13:00,918 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-09 12:13:00,919 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-09 12:13:00,920 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-09 12:13:00,921 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-09 12:13:00,923 [salt.master                                ][INFO    ] Clear payload received with command publish
2015-02-09 12:13:00,925 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.prep_jid
2015-02-09 12:13:00,926 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'_stamp': '2015-02-09T12:13:00.925489', 'minions': ['prefix_c1gdp01.customized.domain']}
2015-02-09 12:13:00,926 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121300925212', 'tgt': 'prefix_c1gdp01', '_stamp': '2015-02-09T12:13:00.925863', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp01.customized.domain']}
2015-02-09 12:13:00,926 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121300925212', 'tgt': 'prefix_c1gdp01', '_stamp': '2015-02-09T12:13:00.926224', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp01.customized.domain']}
2015-02-09 12:13:00,927 [salt.master                                ][INFO    ] User root Published command grains.item with jid 20150209121300925212
2015-02-09 12:13:00,927 [salt.master                                ][DEBUG   ] Published command details {'tgt_type': 'pcre', 'jid': '20150209121300925212', 'tgt': 'prefix_c1gdp01', 'ret': '', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item'}
2015-02-09 12:13:00,930 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.get_load
2015-02-09 12:13:00,931 [salt.client                                ][DEBUG   ] get_iter_returns for jid 20150209121300925212 sent to set(['prefix_c1gdp01.customized.domain']) will timeout at 12:13:50.930993
2015-02-09 12:13:01,003 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:01,003 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp04.customized.domain
2015-02-09 12:13:01,004 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp04.customized.domain
2015-02-09 12:13:01,007 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:01,007 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp12.customized.domain
2015-02-09 12:13:01,008 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp12.customized.domain
2015-02-09 12:13:01,159 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-09 12:13:01,171 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-09 12:13:01,190 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp04.customized.domain', '_stamp': '2015-02-09T12:13:01.189683', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAx4m/iO2aty2NKIv+Ej14\nJBcZ6gVZhb/ALvAKCh0c+9kyATwJtVPioUpudXRmrlbM5rHdYUnjLU9e5VSqjswr\nu2955XKg1mskNcn0hHFEN9UVMai9JfsT2Q7TzRmTk0K5HcyTiaPjrlBs4FJ+T1JM\nLhwArGeZ0UTiWXH0YKkyED5YOYprUuhDn70Hy7rwKjvWunBqKslVUHQJGsAYp78H\n1WZ7qOpbHaVxapSsR/PgxBl6TB55NdfpOYvr/EISWt91AXUQo8hD7wFKTI6LA9jV\nHhKtwKMN6OUP1V/WX/bgbsCbJS1PvRZdI1sXMfCZjel+TnFdsPz1uR3ksTY3+9t0\n0CYjD1499181pbqRym3IgZYPcW+IGf5rt34RKDFq7BWJ+Phnivb4rrNqhSIP+KmR\nnpDuTB1Daq51qe0HRtMcHa31hKAknaJG3Wh1w+QUHgW7GwdlrOm6Oo5iSNdwOY5u\nWMzSaSul6tcCXQt1sFp+h0dFLZFdNAxbm9CFlr7eCLhgtBGXlvxn6QSFIIy/Vu5D\n7vNe2Y/DjkiPmNUVqHu6ce1WO41sYegz7KRqP0Fcxet5ig9Sp4LBB8EL+HQbXM8X\n5BEJYM5rG8mYCOX4cWaHzNw6koIXgSTwI8EIgulVfbVArwjq2oIvsVpcshMQsujl\nGrBRwWrTUTRu+3gUVf8AuBkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:01,192 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp12.customized.domain', '_stamp': '2015-02-09T12:13:01.192000', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvlf+ws3hadN3GYHQKX48\nOKI9D3BNOWFIdOj82L6gWLXb8brhwQWHyDUNuqD2Rj0kGBBtNZjcwV/McYhM2I2i\nbU4jilwNDBEvn6F6OzaK+lxDiiVVg1N0EIPPvNZg6B4alDSC+8Do6yI+F5NWfqxH\nCW9eOGk4WsNkLMno3gYuciarpC1fYBdngKUbx0wTynuBjkx+0L45YfmwNkvURhct\nFFF9DPvJlD0iASF/ZkQxEjLJv01L/EvHCJ9QBxOTdwaaoRF9nJ3ugoevvZyutvnP\nl+HQG7c3+cMCBMLNEtywoRfW9nNcwg88WeIBxQg4PMQUdw9jNU/N8SL2yOX443YP\nnXgfLvcinPLf1DO/+hLYvi755/fNhCSYDe3ZqyR1mgfFHqnG9JIE3Fbik9J+i46h\n4pkzgM6nPV2scEWX3COKPA1w57h9XxYODRpwnyRH3FI3KkuZU1lG2NmS5KbdhaQw\ng4zZdO0WZSu2q2zF5GnjEkZJAjYsRttEC1Fgad6P2iCubR+9AHF+VGV0WxQrfdpE\nvD/6SsCKW9KbnvPoU82ObH84DBs6H5jJ5p/kNNHtxwBLHaJTOP6G0A8cyLnrxdl6\nK0EWe9HBMTEV6kXUz+KrAQcwzPlHAeYfD+CdU5dzUjb8vA9X0VvSDUmhvRPMXmiK\nOVtC6VRUlGczEOTeaSpRDqECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:02,005 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:02,005 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp10.customized.domain
2015-02-09 12:13:02,006 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp10.customized.domain
2015-02-09 12:13:02,191 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp10.customized.domain', '_stamp': '2015-02-09T12:13:02.190613', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxY9TvruV9yUK5sl4bRg3\nsJ1c8iVIJoPcg2c3hYuXD+DmzeraJT5bdzRos3oQlcdrMMegC8UruCmPw8zAwC/R\n/vLb3f7ihKlnXAvjXcxk21MK3QZJyE/12xFo9igC569ZfIRq3MC5QB0WCNx4pJZp\na1PQRGg04cNpfft7NVNSb2oDFqaSPZ6DcjNTbJm7/QxRNzxgYWbpaHX7uhPgGhp5\no+LWSoqxPKWUcbdxFtjR6ELgpmn3JXw872F1+WvQkpHEBUiz3KTvKXz0nryXenNK\nda+wnjExETr+1GTUZ8zW5cGGKaxkcd0VwGdXOczfLMrdFpWghZAgHFVvQqPrDQ14\na6a+v17cYDWHQn+K/HjshHoYSsuRBS59+5XT5sIaDqCZ9cGQk0Qk2MUDTYJM9KaA\nxjbCAtj+s4/wDk5X9spj5RojlqHlkn2g1ZuhsA3exaP9rRpDbbmqImNN0vtmSC52\n4oBcSs9QecW5eexyl4u0KipZAFCNSogYTzVQax/Wq77QJlrn2lvNavfeOajBdLc1\nCVQGgaJIAsyH/Z3WhwZtlKukx2VB5rVf6zZPlEQUKfKabORAlry5TfGxD/a7SybO\n9cUXDACgxDgfMGA3M9MAnRCgV2w4oI653u1keExZJrU5/RvAPpMRq6jQRSiC73Zc\n7HGzhOZrd0qaZrtasMFEO+UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:03,002 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:03,002 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp01.customized.domain
2015-02-09 12:13:03,003 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp01.customized.domain
2015-02-09 12:13:03,189 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp01.customized.domain', '_stamp': '2015-02-09T12:13:03.189175', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw6StNV+KM3GcqHmNjLha\nNzl3jn9J42wxak8QoAxTp6HDrgcKi3UGLE7TUFBRaV0XZ1z+ipscnPIxd80POSrw\nMGCRgkeFOGNc8Nxwr6bHFqL0+KdSKfVB3N5V000hCY62X901391+6aJxomJZjDRo\nKlO+o9KTuked3FU+PST75TO9ltNEgQebbHDLR+kuHRy3fSG3uXYkyJJIevTed7M7\nwbnYr2yNgzdnoUa0gjmIkP/AOiohkrNur/8gUYLlfH5lz5aIBYbQMh5HmAH6ug+1\n/3at1QwAjKRgyNnXPo0ELLkrp44y1hRz/QCBc9qppzTduAMHdGC5akcBIT28eZX9\npU1CszAhB71C28jOYwlgoLTU6pAL0k2opRGfEap1XLd12uy8zpdA0BRkZ4GNIyQn\nt53Y9lpi3aSN1qgGlCKZZ7JYsj3481bhrjmdmdionfkEdPUnm6C/HCSN9X5wqiE4\na0JVLGuXavDu1CLGM3GsjulqzeY4snzSOOeZuNN436EwxGebBPmRGya0wOH0cuKj\nOp9HmCakMQul+/YkcytWpKg5JKxnYMyughGUj2za7gHWNB/KSE60dcFNXexQ66b6\nkRz9MWy0h6jDCoSjE2YV9Nxc6g610Q/ZUgscPhxmlil0sbDCrTic2svbF5Bg7LQH\nByRPnyK1dmLuO8vR3KNbRUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:03,668 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:03,668 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp01.customized.domain
2015-02-09 12:13:03,669 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp01.customized.domain
2015-02-09 12:13:03,901 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp01.customized.domain', '_stamp': '2015-02-09T12:13:03.900595', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw6StNV+KM3GcqHmNjLha\nNzl3jn9J42wxak8QoAxTp6HDrgcKi3UGLE7TUFBRaV0XZ1z+ipscnPIxd80POSrw\nMGCRgkeFOGNc8Nxwr6bHFqL0+KdSKfVB3N5V000hCY62X901391+6aJxomJZjDRo\nKlO+o9KTuked3FU+PST75TO9ltNEgQebbHDLR+kuHRy3fSG3uXYkyJJIevTed7M7\nwbnYr2yNgzdnoUa0gjmIkP/AOiohkrNur/8gUYLlfH5lz5aIBYbQMh5HmAH6ug+1\n/3at1QwAjKRgyNnXPo0ELLkrp44y1hRz/QCBc9qppzTduAMHdGC5akcBIT28eZX9\npU1CszAhB71C28jOYwlgoLTU6pAL0k2opRGfEap1XLd12uy8zpdA0BRkZ4GNIyQn\nt53Y9lpi3aSN1qgGlCKZZ7JYsj3481bhrjmdmdionfkEdPUnm6C/HCSN9X5wqiE4\na0JVLGuXavDu1CLGM3GsjulqzeY4snzSOOeZuNN436EwxGebBPmRGya0wOH0cuKj\nOp9HmCakMQul+/YkcytWpKg5JKxnYMyughGUj2za7gHWNB/KSE60dcFNXexQ66b6\nkRz9MWy0h6jDCoSjE2YV9Nxc6g610Q/ZUgscPhxmlil0sbDCrTic2svbF5Bg7LQH\nByRPnyK1dmLuO8vR3KNbRUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:04,351 [salt.master                                ][INFO    ] AES payload received with command _return
2015-02-09 12:13:04,351 [salt.master                                ][INFO    ] Got return from prefix_c1gdp01.customized.domain for job 20150209121300925212
2015-02-09 12:13:04,352 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121300925212', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:13:04.352094', 'fun': 'grains.item', 'id': 'prefix_c1gdp01.customized.domain', 'out': 'grains'}
2015-02-09 12:13:04,353 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121300925212', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:13:04.352502', 'fun': 'grains.item', 'id': 'prefix_c1gdp01.customized.domain', 'out': 'grains'}
2015-02-09 12:13:04,354 [salt.client                                ][DEBUG   ] jid 20150209121300925212 return from prefix_c1gdp01.customized.domain
2015-02-09 12:13:04,354 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.returner
2015-02-09 12:13:04,354 [salt.client                                ][DEBUG   ] jid 20150209121300925212 found all minions set(['prefix_c1gdp01.customized.domain'])
2015-02-09 12:13:04,355 [salt.master                                ][INFO    ] Clear payload received with command publish
2015-02-09 12:13:04,357 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.prep_jid
2015-02-09 12:13:04,357 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'_stamp': '2015-02-09T12:13:04.357123', 'minions': ['prefix_c1gdp02.customized.domain']}
2015-02-09 12:13:04,358 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121304356868', 'tgt': 'prefix_c1gdp02', '_stamp': '2015-02-09T12:13:04.357484', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp02.customized.domain']}
2015-02-09 12:13:04,358 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121304356868', 'tgt': 'prefix_c1gdp02', '_stamp': '2015-02-09T12:13:04.357848', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp02.customized.domain']}
2015-02-09 12:13:04,359 [salt.master                                ][INFO    ] User root Published command grains.item with jid 20150209121304356868
2015-02-09 12:13:04,359 [salt.master                                ][DEBUG   ] Published command details {'tgt_type': 'pcre', 'jid': '20150209121304356868', 'tgt': 'prefix_c1gdp02', 'ret': '', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item'}
2015-02-09 12:13:04,362 [salt.client                                ][DEBUG   ] get_iter_returns for jid 20150209121304356868 sent to set(['prefix_c1gdp02.customized.domain']) will timeout at 12:13:54.361721
2015-02-09 12:13:04,900 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:04,901 [salt.master                                ][INFO    ] Authentication request from prefix_mdb01.customized.domain
2015-02-09 12:13:04,901 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:04,901 [salt.master                                ][INFO    ] Authentication request from prefix_eps02.customized.domain
2015-02-09 12:13:04,901 [salt.master                                ][INFO    ] Authentication accepted from prefix_mdb01.customized.domain
2015-02-09 12:13:04,902 [salt.master                                ][INFO    ] Authentication accepted from prefix_eps02.customized.domain
2015-02-09 12:13:04,998 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:04,999 [salt.master                                ][INFO    ] Authentication request from prefix_c1tm01.customized.domain
2015-02-09 12:13:04,999 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1tm01.customized.domain
2015-02-09 12:13:05,006 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:05,006 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:05,007 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp02.customized.domain
2015-02-09 12:13:05,007 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp11.customized.domain
2015-02-09 12:13:05,007 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp02.customized.domain
2015-02-09 12:13:05,008 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp11.customized.domain
2015-02-09 12:13:05,075 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_eps02.customized.domain', '_stamp': '2015-02-09T12:13:05.075104', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0qfSmECBdRy1PEUu5xre\nvoKX0CDsktkwx2CCThQbWgS4aGgfnQWxXdwRojc+b85X0lC687pRWgSDMK7rmnLG\njS/Gw9ZWGEM67VXBD637aZUipvcZ9Ke3y/IzFV5SOmfil3MZi7rrHgGmWl/s6qw0\nK9sKSUJp6+zrr8G2wyFWia1lvZsNVyDmWX1HV/c3nAjqT3Q4NkKAIBDT5JJqexcs\ng4+X1Q4BWYetJONffg32oSe9qzao92YD9seYdI7U5C+jvJxmx6xpBaVy0tsuFCMv\nSpuT6d9+Nio4zxGN5T34tAO1YCcgsMejjMc44t9UqNxDPuflX+SEvp44uZkjQnSx\ne+Xkog9zi12OhjSjZknFsHCIWCRmIJprXcFAD+0N3y16/HnIaPcd4WKagsfvabvQ\nXbLCSAuBrIBGNDgul+rS4ALk+YYIobUTWhPNzE1v6QaUGyRGdC/C2LPvJQu69e/g\nZs92fTw0sC3ssNq/G/oEizUs/IFKoVHO8sfb9/ndLdvgjMDor4qvYVZpBWMgP0DT\nS5zpnuFbNy5TkwuG94Xapxv3yYKS4Wtqw/MjT1x71uEd311bOLpS27MGhAlIXpcc\nFimqrbRcZbvqkKyxdalnIgIyXdmEj6rSYHuf6X3d+Zzc9gqFcLDB2cSAeRZbxh2p\njchgCuzxCHH7ZoJPHbAaPrECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:05,148 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_mdb01.customized.domain', '_stamp': '2015-02-09T12:13:05.147496', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6Gbp6w76dAEH/0AGeYtc\npjPn9C5eFKsvr3Fx3PbRWQKWvBHUehGJBUhqmb2jVsTQsf/o86mBUoSs/lNYq+cE\nNJfPdHffa7rhthuBalpfncESiOeGcvhTqZhoRgwifnyYUDvR6Siqf8Oowi3n+kfo\nD5epvLuSVn8XHc9Wrgqw1FbRnfm3q9mOLvnXRljSlbvoBvirxJ84P8LYcDFwJylL\nYKyFwdoUHAzp82VlSNDN76obF6KD6h5QCiy9IvKFpkiCPIww9S5uRGlD/HjHCE+u\nDgHsH7UwrXYbtU+5gXYLOP7AZVLiE37tOfsfC/50bZSH24xEvFTDyVSh/b8MNeqv\nPHWzIAsEQmMFeCfaeiti16cnZ8ntrkxUtNsqklMBYt0cNiyyhFLxinYORSLt0Za+\nHlSATrLi2y//eufm4TciBO1u5UEcrR+X1epI5gVvibjgepIj3duIqAODnhjhsjaW\ndfsacpBL87ItnYZv4cIjtByFeT5tbUcq7Sdfv4uyCmmy9+N+kjmy7Jh/KPFpJRuY\nOFtHv0zi/RQFREwN5DB3RZK5MPlJ8e3mYoTRHIr1P7aBYnLfkLbVgobwMmCZ5zbG\n9PmqbvlnHVZsaHY7PfU95pONAsONEChfu7DHmdZdIBMgezwA136wG+2HoU5XpoV4\nlZ57DIvMx1NXQbFrVzOIujsCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:05,157 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1tm01.customized.domain', '_stamp': '2015-02-09T12:13:05.157138', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAy5t2bHwfASwlwv+FKPmX\nyKNL0WJGuGsVB2j6mVVdvGIV3h3YP018ap/gR+CA+QNohVkzuj0ogULxPSiIU0jR\nRCGVMgHY3fONhLGpV5mWg7FCYgD+35aDUq054nstnL06phre6ZsE4+psbyz1QUZH\nvG7n/l1pCXSgu6pMlRPre/Io4+mb2v+s7+au8RH+GUi9Edbemiqbxw1VADw41UhU\nelxxUc+1ZAwJt0qzlZ19S/VfgBn4xH6yEVMlHWVPjTX2zeCcyLicazQS4vpX+Q93\nQ9Zg7aczPytorTEhlH1jmsKJVsx8xQa59XanRVjWjve63evJDg1H1YuJMd1fwwOh\nQHIC40ru45K5nT22v5Y/e+gP/o65+bHW9wA9c3EXmqokhICGEqf1XRDtWwZyG3zY\n+rUWi/u7AzJqzadSRva2O22f7Oe/PIkdtUYDY4+usbbkaKqkj2YVhQy2u0l4tQn6\n9l4h1/s7yCWRQo3JTYiSxc5XId4b0KwUEldqZSY60raG9JQoww/V5goDw3Sh1oHZ\nifl4Aun1xBsZHQKgx1Lv9FJ3whITfioN07bwF/GRHDOiJTSI/LR6ATpo0Gs7VH/j\ndhSwFT1YVjMDwGrt96JEByDzL4Ub4HGiaGD8XNhuWMcxRiLiGyQeeeHyPgR+WuOL\n1pnHLBXjwNNcxpdwd9PDNXcCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:05,193 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp11.customized.domain', '_stamp': '2015-02-09T12:13:05.192461', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv7CZCHvFdsCK5UBVvkP9\nv8ztZQKF3/bOnd/zyZAIAmp0tKHSjRiYfOf+jcPKqmdQ29UFthdFg1P1+o94TMsD\nkZcYrDf5+UJip0hGKbSbivZN076Tdy3YwCSCJsfj6VvX9Wmi9EK9thco8CRsdzgW\n8Yw20AayJweNNCEZYALcPkhLg/X7f8rkJXVjePRaKGf880Kj1yajbNzbc8A0kVEK\nAExLra7XA4LxomtPwf0pj4kgkycFBCpUrefRVi2qhJWKd3F1YkgDQKGqVzk/oF7x\nNFP29FanKWFu6AaGIPlMegGUr1H7VaBVzgza4e1DOBQeH4q9/42NtHHPpxBrY1eu\n6jh7B9I8bfDDhArIJxTvx85VsNvYOcKIr0wLdNVpjZb9PUN8ybwVjE7S7RLAyCLr\nc3CnM7ZoJqsPiHssuScJwjUkQy03vDx1FYkHAFVePfc38oy19T+OZ6xBlEYA3Oo+\nlAUz8MYzCB9/VEymQl2QNDyG7ef5Zrmo6gNLAt72PGqAtpqfPwHE0NRfykQoXB/c\nNsZ3WBMK+d4S6yCVFJ+vYg9X2CSQ+Pd31TIcNxgmvZPobgCNXbrBTsCLWi11dlJl\nwtpFLcAKhY+xmHofDlSHYQH1S9K9EfBjioIqtt7RVq554S/FGQlbfV7elc08FRGX\nF7sdJaZeawFksQbDHmPdoqMCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:05,193 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp02.customized.domain', '_stamp': '2015-02-09T12:13:05.192926', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4akna8RSVCw5o8AEVK+F\nJtM5vDGyGmvGk79yvMQ9rUvwPffm0jZBF2fox9f08vw50srM8JySFkbvoqre7mbU\nfjAWTOT8AhzSAmrz8kZEwveGlw0xhYwMG1vM9q2aiX4PLZ+XJdE051IdiBdI5mmr\nZTdAxX6uPb4bfoixjohGfnbbpDNEBV3RSUaU9KMnhL+Wg28BGEM/c7FMgTyw8dlB\nU6aDF4WLUvqIjH3egLDzh73WXvjZ1Rf0HYQe4WmywHxrc6yp2UY6ouy9AT1TQdoI\nb0keT3s1nvULWSLs4+Dq+GI22GYY6PvjSgLxAbCmlzWk1WO8IW4+grJWipAN19fk\nIYFyjKm+NpTMBM88dRLlFu/Z14u7NxwLxEdu/rezZbLRFZ2ftJARy2K6f7DNDzwK\nG42+RuaVL5JLQtfd5jTq8l55hRdevy3ubDOaqOU/o06Jn5H+6Bzzv01CkVmmxIyW\nfCBgpaMbnngWRZeyMGTeba+7yo4jxwykIDNoKkQ07BG84lLPrJVjm61rF99CwiGQ\ntpU1uWlP+Wg32DbYKRuLrP+nm9EtRHgRy3VgK/9jeqqtLlNhzosxP724tgPIny/H\nuQH3IGsYVZBvBk4FFGIR0fRDrpVh0xb+HDRcRgiaHOPG+iy8zup/B+jpv9uDNSLV\nprR1KDxFCndcgD2M+14pcZsCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:05,671 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:05,671 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp02.customized.domain
2015-02-09 12:13:05,671 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp02.customized.domain
2015-02-09 12:13:05,901 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp02.customized.domain', '_stamp': '2015-02-09T12:13:05.901418', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4akna8RSVCw5o8AEVK+F\nJtM5vDGyGmvGk79yvMQ9rUvwPffm0jZBF2fox9f08vw50srM8JySFkbvoqre7mbU\nfjAWTOT8AhzSAmrz8kZEwveGlw0xhYwMG1vM9q2aiX4PLZ+XJdE051IdiBdI5mmr\nZTdAxX6uPb4bfoixjohGfnbbpDNEBV3RSUaU9KMnhL+Wg28BGEM/c7FMgTyw8dlB\nU6aDF4WLUvqIjH3egLDzh73WXvjZ1Rf0HYQe4WmywHxrc6yp2UY6ouy9AT1TQdoI\nb0keT3s1nvULWSLs4+Dq+GI22GYY6PvjSgLxAbCmlzWk1WO8IW4+grJWipAN19fk\nIYFyjKm+NpTMBM88dRLlFu/Z14u7NxwLxEdu/rezZbLRFZ2ftJARy2K6f7DNDzwK\nG42+RuaVL5JLQtfd5jTq8l55hRdevy3ubDOaqOU/o06Jn5H+6Bzzv01CkVmmxIyW\nfCBgpaMbnngWRZeyMGTeba+7yo4jxwykIDNoKkQ07BG84lLPrJVjm61rF99CwiGQ\ntpU1uWlP+Wg32DbYKRuLrP+nm9EtRHgRy3VgK/9jeqqtLlNhzosxP724tgPIny/H\nuQH3IGsYVZBvBk4FFGIR0fRDrpVh0xb+HDRcRgiaHOPG+iy8zup/B+jpv9uDNSLV\nprR1KDxFCndcgD2M+14pcZsCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:06,350 [salt.master                                ][INFO    ] AES payload received with command _return
2015-02-09 12:13:06,350 [salt.master                                ][INFO    ] Got return from prefix_c1gdp02.customized.domain for job 20150209121304356868
2015-02-09 12:13:06,351 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121304356868', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:13:06.350748', 'fun': 'grains.item', 'id': 'prefix_c1gdp02.customized.domain', 'out': 'grains'}
2015-02-09 12:13:06,351 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121304356868', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:13:06.351192', 'fun': 'grains.item', 'id': 'prefix_c1gdp02.customized.domain', 'out': 'grains'}
2015-02-09 12:13:06,352 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.returner
2015-02-09 12:13:06,359 [salt.client                                ][DEBUG   ] jid 20150209121304356868 return from prefix_c1gdp02.customized.domain
2015-02-09 12:13:06,359 [salt.client                                ][DEBUG   ] jid 20150209121304356868 found all minions set(['prefix_c1gdp02.customized.domain'])
2015-02-09 12:13:06,360 [salt.master                                ][INFO    ] Clear payload received with command publish
2015-02-09 12:13:06,361 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.prep_jid
2015-02-09 12:13:06,362 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'_stamp': '2015-02-09T12:13:06.361921', 'minions': ['prefix_c1gdp03.customized.domain']}
2015-02-09 12:13:06,362 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121306361646', 'tgt': 'prefix_c1gdp03', '_stamp': '2015-02-09T12:13:06.362275', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp03.customized.domain']}
2015-02-09 12:13:06,363 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121306361646', 'tgt': 'prefix_c1gdp03', '_stamp': '2015-02-09T12:13:06.362627', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp03.customized.domain']}
2015-02-09 12:13:06,363 [salt.master                                ][INFO    ] User root Published command grains.item with jid 20150209121306361646
2015-02-09 12:13:06,364 [salt.master                                ][DEBUG   ] Published command details {'tgt_type': 'pcre', 'jid': '20150209121306361646', 'tgt': 'prefix_c1gdp03', 'ret': '', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item'}
2015-02-09 12:13:06,366 [salt.client                                ][DEBUG   ] get_iter_returns for jid 20150209121306361646 sent to set(['prefix_c1gdp03.customized.domain']) will timeout at 12:13:56.365513
2015-02-09 12:13:06,393 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:13:06,394 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp03.customized.domain
2015-02-09 12:13:06,394 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp03.customized.domain
2015-02-09 12:13:06,572 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp03.customized.domain', '_stamp': '2015-02-09T12:13:06.571490', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8H+qA3CZUGzOb2ApgiaL\nGInPpjEZhVYW0dHakicELl0zh9ivGnrmmN1D64HTLLg25QFO0XeoGrqtMBXDdFsB\nrP1hkAU1ApfSte6kf7DTJe5K3MrM9gvprsKndVNEFC5WAVOm1M+psHSlhw5EwzhB\n6YRDFsofUvYT4oOIuK/0B5BrBAp4+Ivm9BLUilDwJ/kcASYOInONT4n+zf91uVtK\nZJBxtr6c0/gO63cXv2wRaZwNksTM09Eu2bwKU/R6akKJfpiFbLaJkU7l9Ql8BTHT\ndwDEORJ5z+7FODFZBw3/MxRdCD4bWSWCu5jCQiZ6MeYzMsKLlvv7C3hIf7o/d2Y+\nPguuG0wlkNOM87yU3sTbpJrU6ZRHstbbBxDLFh+Deg0iWQp3lkI5Rw+gDWFGoLg/\nESxcHU1yU0XHDNaBdDH14DZDpJbY8twhhjrOTAld/0JSP/KucWdXGuSgFeKEBYWT\nAYAOo5sJHI44Iisw6wZ/DFdV2BD95BakR0TjVvNz6+1+FXvNZLLf9LYuzDCYZvHL\nHU+rdMDmdsCiRS3EkwZMznt6pWgxUx2bZ7KajnWsknEi4F3aa1s6MGkyq1wJ3ndg\ng/pUYPz4YtFuTJ1TsDn2MavBDAw22+UVijy72h68unSARCMFljbXtPzbzdgzD/iH\nh/17FHXLKbQaFkVHZfW8hUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:13:07,021 [salt.master                                ][INFO    ] AES payload received with command _return
2015-02-09 12:13:07,021 [salt.master                                ][INFO    ] Got return from prefix_c1gdp03.customized.domain for job 20150209121306361646
2015-02-09 12:13:07,022 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121306361646', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:13:07.021690', 'fun': 'grains.item', 'id': 'prefix_c1gdp03.customized.domain', 'out': 'grains'}
2015-02-09 12:13:07,022 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121306361646', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:13:07.022108', 'fun': 'grains.item', 'id': 'prefix_c1gdp03.customized.domain', 'out': 'grains'}
2015-02-09 12:13:07,023 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.returner
2015-02-09 12:13:07,028 [salt.client                                ][DEBUG   ] jid 20150209121306361646 return from prefix_c1gdp03.customized.domain
2015-02-09 12:13:07,029 [salt.client                                ][DEBUG   ] jid 20150209121306361646 found all minions set(['prefix_c1gdp03.customized.domain'])
2015-02-09 12:14:01,231 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:14:01,334 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-09 12:14:01,352 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-09 12:14:01,353 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:14:01,793 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-09 12:14:01,806 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-09 12:14:07,089 [salt.payload                               ][INFO    ] SaltReqTimeoutError: after 60 seconds. (Try 1 of 3)
2015-02-09 12:15:01,866 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:15:01,969 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-09 12:15:01,987 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-09 12:15:01,989 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:15:02,424 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-09 12:15:02,437 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-09 12:15:07,150 [salt.payload                               ][INFO    ] SaltReqTimeoutError: after 60 seconds. (Try 2 of 3)
2015-02-09 12:16:02,497 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:16:02,600 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-09 12:16:02,618 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-09 12:16:02,619 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-09 12:16:03,050 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-09 12:16:03,062 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-09 12:16:07,210 [salt.payload                               ][INFO    ] SaltReqTimeoutError: after 60 seconds. (Try 3 of 3)
2015-02-09 12:16:07,211 [salt.client                                ][ERROR   ] Salt request timed out. If this error persists, worker_threads may need to be increased.
2015-02-09 12:16:07,212 [salt.pillar                                ][CRITICAL] Rendering SLS 'random_tests' failed, render error:
Traceback (most recent call last):
  File "/usr/lib/python2.6/site-packages/salt/utils/templates.py", line 386, in py
    data = mod.run()
  File "/srv/salt/mydc/pillar/random_tests/init.sls", line 19, in run
    cpu = local.cmd(gdp, 'grains.item', ['num_cpus'], expr_form='pcre', timeout=50)
  File "/usr/lib/python2.6/site-packages/salt/client/__init__.py", line 522, in cmd
    **kwargs)
  File "/usr/lib/python2.6/site-packages/salt/client/__init__.py", line 286, in run_job
    return self._check_pub_data(pub_data)
  File "/usr/lib/python2.6/site-packages/salt/client/__init__.py", line 221, in _check_pub_data
    'Failed to authenticate!  This is most likely because this '
EauthAuthenticationError: Failed to authenticate!  This is most likely because this user is not permitted to execute commands, but there is a small possibility that a disk error occurred (check disk/inode usage).

2015-02-09 12:16:07,213 [salt.pillar                                ][CRITICAL] Pillar render error: Rendering SLS 'random_tests' failed. Please see master log for details.
2015-02-09 12:16:07,215 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:16:07,216 [salt.master                                ][INFO    ] Authentication request from prefix_dpm02.customized.domain
2015-02-09 12:16:07,216 [salt.master                                ][INFO    ] Authentication accepted from prefix_dpm02.customized.domain
2015-02-09 12:16:07,343 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:16:07,343 [salt.master                                ][INFO    ] Authentication request from prefix_dpm01.customized.domain
2015-02-09 12:16:07,344 [salt.master                                ][INFO    ] Authentication accepted from prefix_dpm01.customized.domain
2015-02-09 12:16:07,422 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_dpm02.customized.domain', '_stamp': '2015-02-09T12:16:07.422353', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvP+NZVpm5h31D+S4gcLs\nKc7f3uigXfvWXOfvCxu6A3kDHojhznflZ+3UCMdN5/mqYNgwWMGNm/s8e46xtTHG\nxJBQ4mdheevRcxWQ0EAbCXXs/Qbiu8iaoVfylhihi1A1uX8tMxXEKGdkMjgB1FRH\nDXw2TjLUniu8smolpqERoaAyVlo9R4suDVmv3eaFu67mw2DxSPMH+UzGkSApkQBh\n1T9LHEAKedL01+NhpKB3cosB6fiNAObDjEreeWX7woHfeIQUMCKmKr06Gblgt7Hg\netdyXG69xc8nqEEAxV8l/LkoDry/etbyw+QAtDTilz3aAwoFdBQLMxgyxGxRdDGZ\nZqD3oU0dTAwundYYLj3TXktere2OvLWWNaHeA/SQ2s0KKte527NVTt0Jto1xSF0Y\nywDtRP3jLZOZJzWwEHniMMM49gU09w7sloDfx3oSMKCvzfFAhUvnUHnXlvu9XiQQ\nm+dspqADRe94pmutEcTg+zZdfzwb+D8EuYKYykC4sJKh882nwGZS5LtF9SnIfFw+\nkHN3BxF9wDYcIfNzlSsns4VpXPm7+03DrtY3rYDCpqK5hVtoDL7FDcdrsJ9S0PjT\nISWqy6bVrF+awWwOX/Wi4+DpUV0rL90whIxcSiARu5vPlbLjRlh0CUAGezUejbAr\nUX4xfoM8UPTHhaxOBdFoXBMCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:16:07,423 [salt.master                                ][INFO    ] Clear payload received with command publish
2015-02-09 12:16:07,423 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.prep_jid
2015-02-09 12:16:07,424 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'_stamp': '2015-02-09T12:16:07.423775', 'minions': ['prefix_c1gdp04.customized.domain']}
2015-02-09 12:16:07,424 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121607423624', 'tgt': 'prefix_c1gdp04', '_stamp': '2015-02-09T12:16:07.423991', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp04.customized.domain']}
2015-02-09 12:16:07,424 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150209121607423624', 'tgt': 'prefix_c1gdp04', '_stamp': '2015-02-09T12:16:07.424295', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item', 'minions': ['prefix_c1gdp04.customized.domain']}
2015-02-09 12:16:07,425 [salt.master                                ][INFO    ] User root Published command grains.item with jid 20150209121607423624
2015-02-09 12:16:07,425 [salt.master                                ][DEBUG   ] Published command details {'tgt_type': 'pcre', 'jid': '20150209121607423624', 'tgt': 'prefix_c1gdp04', 'ret': '', 'user': 'root', 'arg': ['num_cpus'], 'fun': 'grains.item'}
2015-02-09 12:16:07,456 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-09 12:16:07,456 [salt.master                                ][INFO    ] Authentication request from prefix_c1gdp04.customized.domain
2015-02-09 12:16:07,457 [salt.master                                ][INFO    ] Authentication accepted from prefix_c1gdp04.customized.domain
2015-02-09 12:16:07,549 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_dpm01.customized.domain', '_stamp': '2015-02-09T12:16:07.548575', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAywUr5IOIPFk/zxXoYGew\ny/53DXmWt10df6LsX40PQ+aaV7EaKNIkDQiRxN+Yk8r5EhHAHBJKfVtaMBvLIqgW\nFNl/kBlijuYueLDrl03axJoCGp8V4xdFDuFahFXcEjF8paToDQ0tecH+TCdK3yGs\nMHJW4tLmelYRGUEfA+skX4/UsikYMVgpltDOQuf+2oplrOe6ZLIL1C9q/CRw6Pt0\n3VuUXW3365JNm1UAfjhGG3N2x2yEtqrv4b1IMf4LBy9+6dsD00YmsyW7R0lhEyI6\nLeQ4DT1nn8rPKwU78Jn/wn2N+30ie5kQtMD71J2HlnkKxWIsnJHhHk8nOAYEe3jA\n3RKriNAYxpPS/jqBTF/ckeVKN0lcFVCb4TCV8F7x0xzrr8G+jNA3HkE7fBpO4E1k\nWWwlAryPL25qcaheRNoQav/Rq/ygXgd0S+eJtLx7ENBsbmGWzlY5KuXdOJVWm2KO\nTIo32cax46wIbRw+gySJsDM7tONFhhplSiBr/5CUHqr2ZPKYsfAHcBpwgMSBS1NX\nw93GN3yjj2/tNhELB0J6ZzTlt2FYNCo5i4baPWQrAL6DKBltGaAlKy40qG/5xAOz\n3lshYd6mV59W5FyXanaCbxs1yJosPGq67ykMl8E93NMFByICRRLvkEFUM3DyRFXj\nsIilJPKWu2O9IvBwtn1dy3UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:16:07,668 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_c1gdp04.customized.domain', '_stamp': '2015-02-09T12:16:07.668374', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAx4m/iO2aty2NKIv+Ej14\nJBcZ6gVZhb/ALvAKCh0c+9kyATwJtVPioUpudXRmrlbM5rHdYUnjLU9e5VSqjswr\nu2955XKg1mskNcn0hHFEN9UVMai9JfsT2Q7TzRmTk0K5HcyTiaPjrlBs4FJ+T1JM\nLhwArGeZ0UTiWXH0YKkyED5YOYprUuhDn70Hy7rwKjvWunBqKslVUHQJGsAYp78H\n1WZ7qOpbHaVxapSsR/PgxBl6TB55NdfpOYvr/EISWt91AXUQo8hD7wFKTI6LA9jV\nHhKtwKMN6OUP1V/WX/bgbsCbJS1PvRZdI1sXMfCZjel+TnFdsPz1uR3ksTY3+9t0\n0CYjD1499181pbqRym3IgZYPcW+IGf5rt34RKDFq7BWJ+Phnivb4rrNqhSIP+KmR\nnpDuTB1Daq51qe0HRtMcHa31hKAknaJG3Wh1w+QUHgW7GwdlrOm6Oo5iSNdwOY5u\nWMzSaSul6tcCXQt1sFp+h0dFLZFdNAxbm9CFlr7eCLhgtBGXlvxn6QSFIIy/Vu5D\n7vNe2Y/DjkiPmNUVqHu6ce1WO41sYegz7KRqP0Fcxet5ig9Sp4LBB8EL+HQbXM8X\n5BEJYM5rG8mYCOX4cWaHzNw6koIXgSTwI8EIgulVfbVArwjq2oIvsVpcshMQsujl\nGrBRwWrTUTRu+3gUVf8AuBkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-09 12:16:07,767 [salt.master                                ][INFO    ] AES payload received with command _return
2015-02-09 12:16:07,768 [salt.master                                ][INFO    ] Got return from prefix_dpm01.customized.domain for job 20150209121254758939
2015-02-09 12:16:07,769 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': [], 'jid': '20150209121254758939', 'return': {'master': {'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'gitfs_insecure_auth': False, 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'daemon': True, 'publish_session': 86400, 'svnfs_tags': 'tags', 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'file_recv_max_size': 100, 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'ping_on_rotate': False, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'extension_modules': '/var/cache/salt/extmods', 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'peer': {}, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'salt://top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'environment': None, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_dpm01.customized.domain', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'saltversion': '2014.7.0', 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'file_client': 'local', 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, '_errors': ["Rendering SLS 'random_tests' failed. Please see master log for details."]}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:16:07.768485', 'fun': 'pillar.items', 'id': 'prefix_dpm01.customized.domain'}
2015-02-09 12:16:07,770 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': [], 'jid': '20150209121254758939', 'return': {'master': {'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'gitfs_insecure_auth': False, 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'daemon': True, 'publish_session': 86400, 'svnfs_tags': 'tags', 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'file_recv_max_size': 100, 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'ping_on_rotate': False, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'extension_modules': '/var/cache/salt/extmods', 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'peer': {}, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'salt://top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'environment': None, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_dpm01.customized.domain', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'saltversion': '2014.7.0', 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'file_client': 'local', 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, '_errors': ["Rendering SLS 'random_tests' failed. Please see master log for details."]}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:16:07.769420', 'fun': 'pillar.items', 'id': 'prefix_dpm01.customized.domain'}
2015-02-09 12:16:07,771 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.returner
2015-02-09 12:16:08,126 [salt.master                                ][INFO    ] AES payload received with command _return
2015-02-09 12:16:08,127 [salt.master                                ][INFO    ] Got return from prefix_c1gdp04.customized.domain for job 20150209121607423624
2015-02-09 12:16:08,128 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121607423624', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:16:08.127396', 'fun': 'grains.item', 'id': 'prefix_c1gdp04.customized.domain', 'out': 'grains'}
2015-02-09 12:16:08,128 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': ['num_cpus'], 'jid': '20150209121607423624', 'return': {'num_cpus': 24}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-09T12:16:08.127819', 'fun': 'grains.item', 'id': 'prefix_c1gdp04.customized.domain', 'out': 'grains'}
2015-02-09 12:16:08,129 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.returner
basepi commented 9 years ago

I guess what I meant is adding a lot line to the actual pillar file so we could discover how many times it was being run.

Can you reduce the pillar file to something very very simple like this?

def run():
    return {'foo': 'bar'}

I want to make sure it's actually the pillar file that's causing the slowdowns, and not something else unrelated.

spareslant commented 9 years ago

ok done. rest of the setup was same. Following is the output.

2015-02-12 12:37:17,784 [salt             ][INFO    ] Setting up the Salt Master
2015-02-12 12:37:17,787 [salt.crypt                               ][DEBUG   ] Loaded master key: /etc/salt/pki/master/master.pem
2015-02-12 12:37:17,912 [salt.daemons.masterapi                   ][INFO    ] Preparing the root key for local communication
2015-02-12 12:37:17,912 [salt.daemons.masterapi                   ][DEBUG   ] Removing stale keyfile: /var/cache/salt/master/.root_key
2015-02-12 12:37:17,915 [salt.utils.process                       ][DEBUG   ] Created pidfile: /var/run/salt-master.pid
2015-02-12 12:37:17,920 [salt.master                              ][INFO    ] salt-master is starting as user 'root'
2015-02-12 12:37:17,920 [salt.master                              ][INFO    ] Current values for max open files soft/hard setting: 1024/4096
2015-02-12 12:37:17,921 [salt.master                              ][INFO    ] The value for the 'max_open_files' setting, 100000, is higher than what the user running salt is allowed to raise to, 4096. Defaulting to 4096.
2015-02-12 12:37:17,921 [salt.master                              ][INFO    ] Raising max open files value to 4096
2015-02-12 12:37:17,921 [salt.master                              ][INFO    ] New values for max open files soft/hard values: 4096/4096
2015-02-12 12:37:17,922 [salt.utils.process                       ][DEBUG   ] Started '<bound method Master._clear_old_jobs of <salt.master.Master object at 0x2a75dd0>>'(*[], **{} with pid 13747
2015-02-12 12:37:17,924 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,924 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.Publisher'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60},), **{} with pid 13748
2015-02-12 12:37:17,925 [salt.master                              ][INFO    ] Starting the Salt Publisher on tcp://0.0.0.0:4505
2015-02-12 12:37:17,925 [salt.master                              ][INFO    ] Starting the Salt Puller on ipc:///var/run/salt/master/publish_pull.ipc
2015-02-12 12:37:17,926 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.utils.event.EventPublisher'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60},), **{} with pid 13751
2015-02-12 12:37:17,926 [salt.master                              ][DEBUG   ] Halite: Unavailable.
2015-02-12 12:37:17,927 [salt.utils.process                       ][DEBUG   ] Started '<function run_reqserver at 0x2b35ed8>'(*[], **{} with pid 13752
2015-02-12 12:37:17,929 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13755
2015-02-12 12:37:17,930 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,931 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,931 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,932 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13756
2015-02-12 12:37:17,932 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,933 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,933 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,935 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13757
2015-02-12 12:37:17,936 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,936 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,937 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,937 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13758
2015-02-12 12:37:17,938 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,938 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,938 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,940 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13759
2015-02-12 12:37:17,941 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,941 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,942 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,942 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13760
2015-02-12 12:37:17,943 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,943 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,944 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,945 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13761
2015-02-12 12:37:17,946 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,947 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,947 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,948 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13762
2015-02-12 12:37:17,948 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,948 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,949 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,951 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13763
2015-02-12 12:37:17,952 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,953 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,954 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,954 [salt.utils.process                       ][DEBUG   ] Started '<class 'salt.master.MWorker'>'(*({'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'extension_modules': '/var/cache/salt/extmods', 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'daemon': True, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'aes': 'Hgqf1iiOU3sx0NGxICjO5fYxScEY8PLtLzWMRYa8gVy5naeXPHJkHVzLFmp5QgMesjHqsyr0MIo=', 'publish_session': 86400, 'file_recv_max_size': 100, 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'svnfs_tags': 'tags', 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'peer': {}, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'ping_on_rotate': False, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'gitfs_insecure_auth': False, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_inf02.customized.domain_master', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}, {}, {'root': 'sN03jNNv3AXawdWKMaToQ91ZwOM5YAoiQwkKEFemiSTCXDnfRzdEKNZbS31V2V1DuP8IA8m5un4='}, <salt.crypt.Crypticle object at 0x2a88a90>), **{} with pid 13764
2015-02-12 12:37:17,955 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:17,956 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:17,957 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:17,957 [salt.utils.process                       ][DEBUG   ] Started '<bound method ReqServer.zmq_device of <salt.master.ReqServer object at 0x220cb90>>'(*[], **{} with pid 13765
2015-02-12 12:37:17,959 [salt.master                              ][INFO    ] Setting up the master communication server
2015-02-12 12:37:18,005 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,017 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,018 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,019 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,027 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,029 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,030 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,031 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,031 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,033 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,035 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,036 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,036 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,037 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,037 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,040 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,040 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,041 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,042 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,042 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,042 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,047 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,048 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,049 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,049 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,049 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,050 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,052 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,052 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,053 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,053 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,054 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,055 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,055 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,056 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,058 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,063 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,066 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,067 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,068 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,069 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,070 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,071 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,072 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,072 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,074 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,074 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,074 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,074 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,076 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,078 [salt.config                              ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,079 [salt.utils.event                         ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,080 [salt.utils.event                         ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,104 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,114 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,116 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,117 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,124 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,134 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,134 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,138 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,148 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,153 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,154 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,161 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,162 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,166 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,173 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,173 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,173 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,181 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,182 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,185 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,193 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,194 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,204 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,212 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,212 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,215 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,224 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,224 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,237 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,242 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,243 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,249 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,249 [salt.config                              ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,250 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,254 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,255 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,256 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,257 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,259 [salt.config                              ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,260 [salt.config                              ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,273 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,354 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,367 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,367 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,371 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,394 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,394 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,419 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,434 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,449 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,451 [salt.cloud                                 ][DEBUG   ] Mako not available
2015-02-12 12:37:18,506 [salt.utils.event                            ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,506 [salt.utils.event                            ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,515 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-12 12:37:18,543 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,543 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,544 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,544 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,554 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,554 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,554 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,554 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,555 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,555 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,555 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,555 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,560 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,560 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,560 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,560 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,581 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,581 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,581 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,581 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,582 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,583 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,583 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,583 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,583 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,593 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,594 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,599 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,605 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,605 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,605 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,606 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,620 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,622 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,627 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,627 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,628 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,628 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,632 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,633 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,633 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,634 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,634 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,637 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,637 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,637 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,637 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,640 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,641 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,643 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,644 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,648 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,648 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,652 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,652 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,653 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,654 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,656 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,657 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,670 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,673 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,674 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,681 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,681 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,681 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,686 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,695 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,696 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,704 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,713 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,714 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,723 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,733 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,733 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,735 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,745 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,746 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,746 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,756 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,757 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,920 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,920 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,920 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,933 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,933 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,933 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,938 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,939 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,939 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,945 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,945 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,945 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,946 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,947 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,947 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,952 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,952 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,952 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,970 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,978 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,979 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,980 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,980 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,980 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,983 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,986 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,986 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,986 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,988 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,989 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,989 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,990 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,990 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,991 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,992 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,992 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,992 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:18,995 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,996 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:18,996 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:18,997 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:18,997 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:18,998 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:18,998 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,002 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,003 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,004 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,005 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,005 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,005 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,005 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,006 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,007 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,007 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,007 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,010 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,010 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,011 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,011 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,011 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,019 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,019 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,020 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,029 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,029 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,029 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,030 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,036 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,037 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,038 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,039 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,042 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,044 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,045 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,046 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,046 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,046 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,047 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,048 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,049 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,050 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,050 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,051 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,051 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,051 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,055 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,055 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,056 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,057 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,061 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,064 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,065 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,066 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,066 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,070 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,070 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,071 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,077 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,078 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,078 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,078 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,079 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,079 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,087 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,088 [salt.config                                ][DEBUG   ] Missing configuration file: ~/.saltrc
2015-02-12 12:37:19,089 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,089 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,090 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,101 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,104 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,111 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,112 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,114 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,115 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,129 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,138 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,139 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,141 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,151 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,151 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,301 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,301 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,303 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,303 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,304 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,314 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,315 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,315 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,315 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,316 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,317 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,317 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,317 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,317 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,317 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,333 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,333 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,335 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,335 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,335 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,336 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,336 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,338 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,338 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,338 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,350 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,350 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,352 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,352 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,352 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,353 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,361 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,363 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,366 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,366 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,375 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,375 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,377 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,378 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,381 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,382 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,383 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,383 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,384 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,385 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,388 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,393 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,394 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,398 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,399 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,402 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,402 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,404 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,404 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,404 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,409 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,409 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,411 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,411 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,411 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,411 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,414 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,414 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,416 [salt.utils.event                           ][DEBUG   ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc
2015-02-12 12:37:19,416 [salt.utils.event                           ][DEBUG   ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc
2015-02-12 12:37:19,416 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,420 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,420 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,433 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,442 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,443 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,454 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,461 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,463 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,464 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,466 [salt.config                                ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:37:19,471 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,472 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,477 [salt.config                                ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:37:19,477 [salt.config                                ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:37:19,648 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,652 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,668 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,673 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,681 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,690 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,710 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,735 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,745 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:37:19,750 [salt.master                                ][INFO    ] Worker binding to socket ipc:///var/run/salt/master/workers.ipc
2015-02-12 12:38:14,398 [salt.master                                ][INFO    ] Clear payload received with command publish
2015-02-12 12:38:14,400 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.prep_jid
2015-02-12 12:38:14,408 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'_stamp': '2015-02-12T12:38:14.407756', 'minions': ['prefix_g1dpm01.customized.domain']}
2015-02-12 12:38:14,408 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150212123814400193', 'tgt': '.+g1dpm01', '_stamp': '2015-02-12T12:38:14.408208', 'user': 'root', 'arg': [], 'fun': 'pillar.items', 'minions': ['prefix_g1dpm01.customized.domain']}
2015-02-12 12:38:14,409 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'tgt_type': 'pcre', 'jid': '20150212123814400193', 'tgt': '.+g1dpm01', '_stamp': '2015-02-12T12:38:14.408561', 'user': 'root', 'arg': [], 'fun': 'pillar.items', 'minions': ['prefix_g1dpm01.customized.domain']}
2015-02-12 12:38:14,409 [salt.master                                ][INFO    ] User root Published command pillar.items with jid 20150212123814400193
2015-02-12 12:38:14,410 [salt.master                                ][DEBUG   ] Published command details {'tgt_type': 'pcre', 'jid': '20150212123814400193', 'tgt': '.+g1dpm01', 'ret': '', 'user': 'root', 'arg': [], 'fun': 'pillar.items'}
2015-02-12 12:38:15,541 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:15,542 [salt.master                                ][INFO    ] Authentication request from prefix_g1eps01.customized.domain
2015-02-12 12:38:15,542 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1eps01.customized.domain
2015-02-12 12:38:15,644 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:15,644 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp03.customized.domain
2015-02-12 12:38:15,645 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp03.customized.domain
2015-02-12 12:38:15,661 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:15,661 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp14.customized.domain
2015-02-12 12:38:15,662 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp14.customized.domain
2015-02-12 12:38:15,727 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1eps01.customized.domain', '_stamp': '2015-02-12T12:38:15.726146', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvMHGtT52j/sIDX3qQ0w4\nj5YbtqxXzf33NEAeX7IfqDxCXxBbeKYyCUlEJkjcGnphb4T0e4NpBXP6OMQFAgRb\nWhpnxzmtBKwEMnnXRO6g0Vs3LdND9euzshZm928vE34bThUzq8s6zVD4BsqMaigE\nVo1qj3FvMLGXO85NIb9sNBUv//eTvxZFpiyKlBM1d9P2P6nV0Pfw0DTYwE3T9Cox\nGFFXNAMLLb84jP2tUqmpBKYcBW7Gi5NI3Qnp2ucQ0YaTTIHprDzr2AeRiXs9lYRW\nzNEg12r+OJnJxgU/G8yGXJDYVFMCEQE0Q8FoHaEhcNKKzqxXZ/AtauV2iFc+0YPj\nA5CoOnrBuUSoTQLAzO0jfJEUHyPVNdvFJc47NlfmIRSdx5bqcfhYLwz6Soa4iW+y\nkoTrtBxmRQElNDongzQ+8qfUNO4MfU8+g5H9KqUt7dJ7ICaL4FjLZCvggCOtPhgs\na+xDPLhgERM7PHsmMGDb/TnO8ug2yDPQtskbcR6KK5HPncVm5HH6jzAgQMaXeOVg\nxh8uDjtZTzvBN9JWkPMTdE7V5Q80HMxYw3L0yFfFPkUULFpK+dU8DCRocziyyZWT\n0NL+g+sbnYxm82zSH0GLK3Y67lTSpT5Zi71NwiancgN9Iqylp/C+RJ1uAk/3Ddmf\nwUy8Pl+D0VbTM0QvFofgQz0CAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:15,823 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp14.customized.domain', '_stamp': '2015-02-12T12:38:15.822758', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAn9ce/u6l3AosTMz/clC/\nYMDEJ/I28QpoQWc6Nba+xkAkzBAZcLVUTCsoPebZhFVi2Y62KkTdZIXt/M0mwHmy\nJ0V/u1JBveI2WGrqAA6AtXhc7hw9yehNfbPEC7bXYgQNEFSPX19KfBj88r+JWdJo\nOHHDPi8Epd6bWLwyPdtaiJqarBZPihhx+K/gr78NR9dRCV1B8vfjr3SIop8bsWBA\nwrtahASjpt5ttN7QOgMjwuKQVhEGqy/CMPftg+b5SkRWiztnidFijWK3cisa1AR4\n5EZay2nWStbyvajmYoK/2IBHSPsS5pdaItD18ZUosGlN2UULJ2f0xPQlxsdljRqw\nFIEB/Dup4mLSZsTmjGwNuBNWzQkP9VYu+OSKzyittBtmNtObapDSThJuWXInmI81\nJzYGb6Oo3avOMC1zAOaOiol8U76jBEowkA7KJRqDAlfIJh/F4RdatgpvORPoCL3K\nSMP0rp+wAcrnsW+iur+pdALHwjCBm1u2lqAqsROKa2lFnlw2f5+eOnpRY5HdpkNJ\nfN+9WkN3d/Y367pewu4fTpt16QMJhuiFXmMrfI4TvyXrB01adKfvuSiLwDJRXa4/\nP8mW/y0aXp355LgvPdDfWe6NEMZ6peenbFJ8eowgQITuw35K0B4bm2Lzs2x5hZAD\naxtza6CSHHUOXeQB2npJyoECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:15,841 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp03.customized.domain', '_stamp': '2015-02-12T12:38:15.840973', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8H+qA3CZUGzOb2ApgiaL\nGInPpjEZhVYW0dHakicELl0zh9ivGnrmmN1D64HTLLg25QFO0XeoGrqtMBXDdFsB\nrP1hkAU1ApfSte6kf7DTJe5K3MrM9gvprsKndVNEFC5WAVOm1M+psHSlhw5EwzhB\n6YRDFsofUvYT4oOIuK/0B5BrBAp4+Ivm9BLUilDwJ/kcASYOInONT4n+zf91uVtK\nZJBxtr6c0/gO63cXv2wRaZwNksTM09Eu2bwKU/R6akKJfpiFbLaJkU7l9Ql8BTHT\ndwDEORJ5z+7FODFZBw3/MxRdCD4bWSWCu5jCQiZ6MeYzMsKLlvv7C3hIf7o/d2Y+\nPguuG0wlkNOM87yU3sTbpJrU6ZRHstbbBxDLFh+Deg0iWQp3lkI5Rw+gDWFGoLg/\nESxcHU1yU0XHDNaBdDH14DZDpJbY8twhhjrOTAld/0JSP/KucWdXGuSgFeKEBYWT\nAYAOo5sJHI44Iisw6wZ/DFdV2BD95BakR0TjVvNz6+1+FXvNZLLf9LYuzDCYZvHL\nHU+rdMDmdsCiRS3EkwZMznt6pWgxUx2bZ7KajnWsknEi4F3aa1s6MGkyq1wJ3ndg\ng/pUYPz4YtFuTJ1TsDn2MavBDAw22+UVijy72h68unSARCMFljbXtPzbzdgzD/iH\nh/17FHXLKbQaFkVHZfW8hUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:16,541 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:16,542 [salt.master                                ][INFO    ] Authentication request from prefix_g1dat01.customized.domain
2015-02-12 12:38:16,542 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1dat01.customized.domain
2015-02-12 12:38:16,726 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1dat01.customized.domain', '_stamp': '2015-02-12T12:38:16.726093', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtZlxwPrrq7SczPQe49wp\nEK6Opy6ae3BHm6ht4FaLEVzxiTmMGEUvoPWEkUaJpd0sRWN7aIRrno+GwzR34uCx\nzuuj1C4At+KsKjbUNJRqyQXXh/q+b6kXo2YEdet40sj28pvUfTz2krefWnY8Bf0S\nZHLcN1t53VKItPxEVv+DnLm4EsZ4briiigqas7um3LR5c3cpbZ518Jqe1znEXXBz\naMj4z5b3ksX7KpnTRYpuR1Rp+kaOHZFok61dpPk2e6H45m/L+YJ8xVzCqIEdi+nu\nHgxJlth2Lvc55uZamwZkh86ls63TLDUTtGy5dwdkbqI8RLrGuy/kEcddGFlaz8F2\nkbe00Qcs2vt/ZHjUzmaQRH1CD3YLfFUDde1gyJdoLSXo9jRMGL5wQYdTTbi3CBvm\npvkhwK7E9ajNHFDpV3FLNR/zWKgkLVAfN74wUrccwH6PDltrBZwAnSghe9Oowmst\noOaP5DXdFH8SZpc524/gzitRl9vF2RZiiz/RjrNDaesSR9Z6mL4e0INe6xseH9j6\nzXWn3Ed7n4j6TewXZ0BV2mUYNlPZ4ygCD1aizIrQlf9HtP8FQQIGAWTDD9Xa+r5x\n3ICDZQj1KPktoH+LfCbBAzBXmN/G+kpaEz+C+djywdJwXHyyPji2uXLQQeHskFqg\nHNTLls+E+bke6jYdUXmJEF0CAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:17,648 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:17,648 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp11.customized.domain
2015-02-12 12:38:17,649 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp11.customized.domain
2015-02-12 12:38:17,650 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:17,651 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp10.customized.domain
2015-02-12 12:38:17,651 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp10.customized.domain
2015-02-12 12:38:17,843 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp11.customized.domain', '_stamp': '2015-02-12T12:38:17.843089', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv7CZCHvFdsCK5UBVvkP9\nv8ztZQKF3/bOnd/zyZAIAmp0tKHSjRiYfOf+jcPKqmdQ29UFthdFg1P1+o94TMsD\nkZcYrDf5+UJip0hGKbSbivZN076Tdy3YwCSCJsfj6VvX9Wmi9EK9thco8CRsdzgW\n8Yw20AayJweNNCEZYALcPkhLg/X7f8rkJXVjePRaKGf880Kj1yajbNzbc8A0kVEK\nAExLra7XA4LxomtPwf0pj4kgkycFBCpUrefRVi2qhJWKd3F1YkgDQKGqVzk/oF7x\nNFP29FanKWFu6AaGIPlMegGUr1H7VaBVzgza4e1DOBQeH4q9/42NtHHPpxBrY1eu\n6jh7B9I8bfDDhArIJxTvx85VsNvYOcKIr0wLdNVpjZb9PUN8ybwVjE7S7RLAyCLr\nc3CnM7ZoJqsPiHssuScJwjUkQy03vDx1FYkHAFVePfc38oy19T+OZ6xBlEYA3Oo+\nlAUz8MYzCB9/VEymQl2QNDyG7ef5Zrmo6gNLAt72PGqAtpqfPwHE0NRfykQoXB/c\nNsZ3WBMK+d4S6yCVFJ+vYg9X2CSQ+Pd31TIcNxgmvZPobgCNXbrBTsCLWi11dlJl\nwtpFLcAKhY+xmHofDlSHYQH1S9K9EfBjioIqtt7RVq554S/FGQlbfV7elc08FRGX\nF7sdJaZeawFksQbDHmPdoqMCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:17,845 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp10.customized.domain', '_stamp': '2015-02-12T12:38:17.844620', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxY9TvruV9yUK5sl4bRg3\nsJ1c8iVIJoPcg2c3hYuXD+DmzeraJT5bdzRos3oQlcdrMMegC8UruCmPw8zAwC/R\n/vLb3f7ihKlnXAvjXcxk21MK3QZJyE/12xFo9igC569ZfIRq3MC5QB0WCNx4pJZp\na1PQRGg04cNpfft7NVNSb2oDFqaSPZ6DcjNTbJm7/QxRNzxgYWbpaHX7uhPgGhp5\no+LWSoqxPKWUcbdxFtjR6ELgpmn3JXw872F1+WvQkpHEBUiz3KTvKXz0nryXenNK\nda+wnjExETr+1GTUZ8zW5cGGKaxkcd0VwGdXOczfLMrdFpWghZAgHFVvQqPrDQ14\na6a+v17cYDWHQn+K/HjshHoYSsuRBS59+5XT5sIaDqCZ9cGQk0Qk2MUDTYJM9KaA\nxjbCAtj+s4/wDk5X9spj5RojlqHlkn2g1ZuhsA3exaP9rRpDbbmqImNN0vtmSC52\n4oBcSs9QecW5eexyl4u0KipZAFCNSogYTzVQax/Wq77QJlrn2lvNavfeOajBdLc1\nCVQGgaJIAsyH/Z3WhwZtlKukx2VB5rVf6zZPlEQUKfKabORAlry5TfGxD/a7SybO\n9cUXDACgxDgfMGA3M9MAnRCgV2w4oI653u1keExZJrU5/RvAPpMRq6jQRSiC73Zc\n7HGzhOZrd0qaZrtasMFEO+UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:18,576 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:38:18,647 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:18,648 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp15.customized.domain
2015-02-12 12:38:18,648 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp15.customized.domain
2015-02-12 12:38:18,649 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:18,649 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp08.customized.domain
2015-02-12 12:38:18,650 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp08.customized.domain
2015-02-12 12:38:18,650 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:18,651 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp01.customized.domain
2015-02-12 12:38:18,651 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp01.customized.domain
2015-02-12 12:38:18,679 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:38:18,696 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:38:18,697 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:38:18,844 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp15.customized.domain', '_stamp': '2015-02-12T12:38:18.843442', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA952D2QCnAjSKtQuxuinm\nsINaJe/dAFYyHMUaPIy08p1p/+IBumvN19D8v84JmRbcbwiacxbZYJuK93i9Yqfu\nXCMcN19AqHfRsCbF9itvs7HcPQwbMlr4hixIwqrDWvCLYkmt9Hgbd2efGk+IYynd\n+FmslcZjcIDxMNw89z9IroPYgVnTdL5osvwXLRJTnUrs+tUYaEXStBOWEG6hY4qN\nvyJ6UsqmZVtlQS0PIF16Tvsac1jMOrXQd/uJDwgPHzxWaGheUyvWDFqHD2UoKuL0\nUMFbdAtXXzorRCzW6BEWUbecILbv8pJrLwjhj1SDAIEDl8YHFW8DEHCpJ2YoTDi/\niAjCMW5OQYuYGEQxGRD6MvK352HxyQ9H+NncJ/v2unXciCbOY3RhVX/FeFci9tZd\nEWc8rp6d3yGAFJ2Pv7iY0ZtKsRh3zPzNlcGdJp6fwFiQ/b4dykxukApZJF+P8bWQ\nW/OEoyPn+S8hkgsJp+i6SXG3p3+/AtgeZQl0XgKJ4x8Ll3jbcipV0Iq/L1glXB02\nzc7mpuTrShuziAy2XUFU1Gr1HRt7pPqhbse0HE2VINM4aqeSx3AlVm+kbQRcNAwU\nkDf1PnsnOHDIGZd6Gv8ZOCgsdWRlIs7GH2hiR3ubz2d/Q5dXVYKjD1pMrxcLml4b\n8KgEudgIxcPmcS3PprIUkOkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:18,844 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp01.customized.domain', '_stamp': '2015-02-12T12:38:18.844119', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw6StNV+KM3GcqHmNjLha\nNzl3jn9J42wxak8QoAxTp6HDrgcKi3UGLE7TUFBRaV0XZ1z+ipscnPIxd80POSrw\nMGCRgkeFOGNc8Nxwr6bHFqL0+KdSKfVB3N5V000hCY62X901391+6aJxomJZjDRo\nKlO+o9KTuked3FU+PST75TO9ltNEgQebbHDLR+kuHRy3fSG3uXYkyJJIevTed7M7\nwbnYr2yNgzdnoUa0gjmIkP/AOiohkrNur/8gUYLlfH5lz5aIBYbQMh5HmAH6ug+1\n/3at1QwAjKRgyNnXPo0ELLkrp44y1hRz/QCBc9qppzTduAMHdGC5akcBIT28eZX9\npU1CszAhB71C28jOYwlgoLTU6pAL0k2opRGfEap1XLd12uy8zpdA0BRkZ4GNIyQn\nt53Y9lpi3aSN1qgGlCKZZ7JYsj3481bhrjmdmdionfkEdPUnm6C/HCSN9X5wqiE4\na0JVLGuXavDu1CLGM3GsjulqzeY4snzSOOeZuNN436EwxGebBPmRGya0wOH0cuKj\nOp9HmCakMQul+/YkcytWpKg5JKxnYMyughGUj2za7gHWNB/KSE60dcFNXexQ66b6\nkRz9MWy0h6jDCoSjE2YV9Nxc6g610Q/ZUgscPhxmlil0sbDCrTic2svbF5Bg7LQH\nByRPnyK1dmLuO8vR3KNbRUkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:18,845 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp08.customized.domain', '_stamp': '2015-02-12T12:38:18.844866', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAo53VzagWUVf7YWWA44Mg\nGOHcwaewxpb9hKQ42wTVA7DbDLk+puPPW0vJuzvlFw+kgFFRMB9MHhEIgm5/GSyt\n19z0kAa9ciF7wersMRb1Uvw5hqPRtvc6GcrZ/GZu/bRtD9oxVGfJTGGI0GxxBa4h\nScPS/7xyQarwvWd3tugnou6EytiRAC+EUU8gJ7FI0cK9M7+elKrsoLHb4w+Tdeqm\nA15GBwL8ukEU5d/uTQnX5fl1bYArhdQdxDYfczaWr+uCqsK19yWi5cKzgVakYZpg\nC1LYYhy86TpVXZBRdBbRheqKVQQh23jlpDXzE/OWZEzjvJ9DAlA7vDl+BfhzgR4g\nS9hVq8i5X0vXA9cAgZrXZkuhGvwfRvFMmnQhrVofBJyzcSLrZACcDkEYspXh0Gtm\ncKrhuZJ6D4MpJaNT+vSpXTOPYj7VVOd2gsD+2h2FSKitznZRmtydXS/8rKN0ekdQ\nYTgC7vh3ep17sa4JC+ItEwILRjMdYN4HcS4/7nqc+o0cULrwa0OBl0CtqErB3pty\nJ21WPbTI4O6h91h4GHY/7gpsH81Gf3ICoKKXeeRTS50isYel+ga9XhxvkZv5DS2U\nOFIHs+KGtEmTm+kXEzPt0ycoC2TL1qogscesygU6kYxr390JFCztojR7CyoovVvS\n5e2Ot/TGOFwxyXzXsA4ggFECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:19,093 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-12 12:38:19,118 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-12 12:38:19,650 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:19,651 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp06.customized.domain
2015-02-12 12:38:19,651 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:19,651 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp05.customized.domain
2015-02-12 12:38:19,651 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp06.customized.domain
2015-02-12 12:38:19,652 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp05.customized.domain
2015-02-12 12:38:19,844 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp06.customized.domain', '_stamp': '2015-02-12T12:38:19.843667', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv3ageAAvuwNTtTDuwMyi\n919VbCAa4iVxWGZYGEhaBnR7XSlIT4iA2jOpuNYZoqclchFxx2GsL/bl7tC9ShjW\n5IlTq4RfmiTSYR67Dx3LYKAuqHGxpL4qz+8SCiYfY5IJT7r/2LOmvIQVnPLzA6Jc\neQeyYig3QqyXd+aN/ekAaJsAe6nC5on5kWoHVhYGITo1RO85lgIJVkYMMEK/QvLM\npcQunT1mYhKUgxjWegVjpyHeDAV1VDiKk6l7FNPUzjDlxUvJcs/tdon7Z0pEJulj\n8EwlqAADUN0+1fgtITkRyf0Eln2ngSu+AjriUdOKSpVwkfuJXeVGvU3VFgBjOeur\nP0kIUn3ZoNLTiYra2JDn0VbvWd94BZudL0QZRbRqbTx8TPamZzR+L6Gaip1T+PFE\nO7B5ri/pV9G50SX+T9e/pnYZaLIoCpy1SoowbhvKSg8yPYcK2p9Dom2h3mAjzU2t\nucHNIOapiEO0tJWPwNDLTN4EPDJzJrgARaPz9qI5zqH51+eyfg22lrtoLdvRcMUp\nRyqSGvF2rJfqQLeD0omxgDUoMFGyn6OsVt5lx9NMJxaATTx8SnDg4aqhmJc85YDj\n8KqpQb2Jb7HHa4TSrekRHDlBaS6H4TKYE5KVyFJlrJep0dy0/GwzktWbYzsBkyoU\n3tEp7MSxfQGUA+gtlFZX/vcCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:19,845 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp05.customized.domain', '_stamp': '2015-02-12T12:38:19.844579', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyZ6RMcrLmphCYgboLjQK\nbbofuWJgXGAfP6tfSLKvUza8f9e3zHzvqBvS3NZRmy7FOISQle+kPGckoowVF9po\nHVJ7HjjJuvG/tyMp7Qx/78HsWrObS0aZD1vm8hH8omZlWawu8LK4nZ6V7vhRUeXf\nwYj2RvIIDBtWeUAu8P8R9CjzGh/FeLPY/1j/N9BEumX/HKSmKi9WZFSFw0bBb7iM\n4b586wq+9wyaVhfAxp2QvGxO5XeFyj7OXcGSiUNuPvkb9lx51AVEqYTg5HSnPl4E\nlxcMQpIyjZrEU/nFGqpI+4guOxNh4RyoGXMpXD2HZbiiCysXzegP0vRERxGx6wps\nqs/UDwq8eIjufb4wh3aZ5a9wiSd0J09/IOFgs1CacuPT6fG+rEXiiCUwqYwt/RIV\n+yNaPT3hP2LoVlEZgehRn7TYwbJWkEW/OJmveDjKYEc8r0NKPQQuIzDFoqKu1JmN\nMaVbyuLSS/AORBLs7vjISpbU7tL5Es4uJCH4fOiudGYhiCqOBiGxSOyZEOVMpI+D\nDUwLk392nr7X0MelHYZSq9RKW5oQJRRcH/QN5dFW+7Wqnzu2mqoW/EiZIt8MuHS+\njxxL+h0If9zK8h2GACEa71jsjnH5sf96J0PFtkInRQ4ToWb7UdAG1xQiix61MAS3\nPgxi3fPP1Re7dr8NrCdRRJcCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:20,544 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:20,545 [salt.master                                ][INFO    ] Authentication request from prefix_g1dpm02.customized.domain
2015-02-12 12:38:20,545 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1dpm02.customized.domain
2015-02-12 12:38:20,545 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:20,546 [salt.master                                ][INFO    ] Authentication request from prefix_g1eps02.customized.domain
2015-02-12 12:38:20,546 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1eps02.customized.domain
2015-02-12 12:38:20,650 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:20,651 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp13.customized.domain
2015-02-12 12:38:20,651 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp13.customized.domain
2015-02-12 12:38:20,653 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:20,653 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp02.customized.domain
2015-02-12 12:38:20,654 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp02.customized.domain
2015-02-12 12:38:20,728 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1eps02.customized.domain', '_stamp': '2015-02-12T12:38:20.727653', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0qfSmECBdRy1PEUu5xre\nvoKX0CDsktkwx2CCThQbWgS4aGgfnQWxXdwRojc+b85X0lC687pRWgSDMK7rmnLG\njS/Gw9ZWGEM67VXBD637aZUipvcZ9Ke3y/IzFV5SOmfil3MZi7rrHgGmWl/s6qw0\nK9sKSUJp6+zrr8G2wyFWia1lvZsNVyDmWX1HV/c3nAjqT3Q4NkKAIBDT5JJqexcs\ng4+X1Q4BWYetJONffg32oSe9qzao92YD9seYdI7U5C+jvJxmx6xpBaVy0tsuFCMv\nSpuT6d9+Nio4zxGN5T34tAO1YCcgsMejjMc44t9UqNxDPuflX+SEvp44uZkjQnSx\ne+Xkog9zi12OhjSjZknFsHCIWCRmIJprXcFAD+0N3y16/HnIaPcd4WKagsfvabvQ\nXbLCSAuBrIBGNDgul+rS4ALk+YYIobUTWhPNzE1v6QaUGyRGdC/C2LPvJQu69e/g\nZs92fTw0sC3ssNq/G/oEizUs/IFKoVHO8sfb9/ndLdvgjMDor4qvYVZpBWMgP0DT\nS5zpnuFbNy5TkwuG94Xapxv3yYKS4Wtqw/MjT1x71uEd311bOLpS27MGhAlIXpcc\nFimqrbRcZbvqkKyxdalnIgIyXdmEj6rSYHuf6X3d+Zzc9gqFcLDB2cSAeRZbxh2p\njchgCuzxCHH7ZoJPHbAaPrECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:20,729 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1dpm02.customized.domain', '_stamp': '2015-02-12T12:38:20.729156', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvP+NZVpm5h31D+S4gcLs\nKc7f3uigXfvWXOfvCxu6A3kDHojhznflZ+3UCMdN5/mqYNgwWMGNm/s8e46xtTHG\nxJBQ4mdheevRcxWQ0EAbCXXs/Qbiu8iaoVfylhihi1A1uX8tMxXEKGdkMjgB1FRH\nDXw2TjLUniu8smolpqERoaAyVlo9R4suDVmv3eaFu67mw2DxSPMH+UzGkSApkQBh\n1T9LHEAKedL01+NhpKB3cosB6fiNAObDjEreeWX7woHfeIQUMCKmKr06Gblgt7Hg\netdyXG69xc8nqEEAxV8l/LkoDry/etbyw+QAtDTilz3aAwoFdBQLMxgyxGxRdDGZ\nZqD3oU0dTAwundYYLj3TXktere2OvLWWNaHeA/SQ2s0KKte527NVTt0Jto1xSF0Y\nywDtRP3jLZOZJzWwEHniMMM49gU09w7sloDfx3oSMKCvzfFAhUvnUHnXlvu9XiQQ\nm+dspqADRe94pmutEcTg+zZdfzwb+D8EuYKYykC4sJKh882nwGZS5LtF9SnIfFw+\nkHN3BxF9wDYcIfNzlSsns4VpXPm7+03DrtY3rYDCpqK5hVtoDL7FDcdrsJ9S0PjT\nISWqy6bVrF+awWwOX/Wi4+DpUV0rL90whIxcSiARu5vPlbLjRlh0CUAGezUejbAr\nUX4xfoM8UPTHhaxOBdFoXBMCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:20,818 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp13.customized.domain', '_stamp': '2015-02-12T12:38:20.818129', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsN3lhFNNzpI3wFTlHaRG\n/z1Yg82ZhtxYPjj6DckXyujYPSL1sE9cGhlHjMCd2RadaemiNQE+Ywdhcs741B2j\nMftq4MARE9cK4RlVEw7ShxjqSOBLK6d7WG6yBGPhPlsIWcSygJzT/Rcmvmo7WbLe\n1ebRZdVfo1NsTSKXDgnXkTR4mIOf7Ve89f4SbO1LaTE7c8Vn56D262NxswRahx7p\nxdjwbCAiSZS2A49pSl7HFKgaH+3POy/vBgxValdXG09v3fB9SEuqqJudMPv5l2M4\nkyodooguYyEpnnQwotTc/cangszOrBycXc0u7HCfqMiIKxrSxscpIAzLl6/ScMC+\n4JlRorBpPvzocrO3eOs5F2SON3SvmW2EVUO+m3OwAm3+TWfPUE+vBFZoiSw4iQM9\nHu9XRbdY4fMVsoKkdjMisfwHo7w/D/hPhptsBlFSJi41DcEIdu6IVAJ0QA+MClTp\nTb9DZtE6LMJ3uHfp7EbX2LEY58Q4fHD/qIu+0oqOF6k38J23g08vXZORhUKo3I/M\n9gbVt6WzV4t/0SJAu2hyPDbTg/CW3otLKkuGlrpPEH3+gZBs3GQrBY8B/BXOUIlb\nALLJKHzpG9cVMZ1rKxB6tb2d2kQwLsDCxWMRIkmo9gCbZpj/XP7n5ijv5IhsKuRV\n5IGxoCn+a6GsvaxzFknchCECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:20,820 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp02.customized.domain', '_stamp': '2015-02-12T12:38:20.819601', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4akna8RSVCw5o8AEVK+F\nJtM5vDGyGmvGk79yvMQ9rUvwPffm0jZBF2fox9f08vw50srM8JySFkbvoqre7mbU\nfjAWTOT8AhzSAmrz8kZEwveGlw0xhYwMG1vM9q2aiX4PLZ+XJdE051IdiBdI5mmr\nZTdAxX6uPb4bfoixjohGfnbbpDNEBV3RSUaU9KMnhL+Wg28BGEM/c7FMgTyw8dlB\nU6aDF4WLUvqIjH3egLDzh73WXvjZ1Rf0HYQe4WmywHxrc6yp2UY6ouy9AT1TQdoI\nb0keT3s1nvULWSLs4+Dq+GI22GYY6PvjSgLxAbCmlzWk1WO8IW4+grJWipAN19fk\nIYFyjKm+NpTMBM88dRLlFu/Z14u7NxwLxEdu/rezZbLRFZ2ftJARy2K6f7DNDzwK\nG42+RuaVL5JLQtfd5jTq8l55hRdevy3ubDOaqOU/o06Jn5H+6Bzzv01CkVmmxIyW\nfCBgpaMbnngWRZeyMGTeba+7yo4jxwykIDNoKkQ07BG84lLPrJVjm61rF99CwiGQ\ntpU1uWlP+Wg32DbYKRuLrP+nm9EtRHgRy3VgK/9jeqqtLlNhzosxP724tgPIny/H\nuQH3IGsYVZBvBk4FFGIR0fRDrpVh0xb+HDRcRgiaHOPG+iy8zup/B+jpv9uDNSLV\nprR1KDxFCndcgD2M+14pcZsCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:21,546 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:21,547 [salt.master                                ][INFO    ] Authentication request from prefix_g1dpm01.customized.domain
2015-02-12 12:38:21,547 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1dpm01.customized.domain
2015-02-12 12:38:21,649 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:21,650 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1tm01.customized.domain
2015-02-12 12:38:21,650 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1tm01.customized.domain
2015-02-12 12:38:21,651 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:21,651 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp09.customized.domain
2015-02-12 12:38:21,652 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp09.customized.domain
2015-02-12 12:38:21,662 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:21,663 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp07.customized.domain
2015-02-12 12:38:21,664 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp07.customized.domain
2015-02-12 12:38:21,789 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1dpm01.customized.domain', '_stamp': '2015-02-12T12:38:21.788398', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAywUr5IOIPFk/zxXoYGew\ny/53DXmWt10df6LsX40PQ+aaV7EaKNIkDQiRxN+Yk8r5EhHAHBJKfVtaMBvLIqgW\nFNl/kBlijuYueLDrl03axJoCGp8V4xdFDuFahFXcEjF8paToDQ0tecH+TCdK3yGs\nMHJW4tLmelYRGUEfA+skX4/UsikYMVgpltDOQuf+2oplrOe6ZLIL1C9q/CRw6Pt0\n3VuUXW3365JNm1UAfjhGG3N2x2yEtqrv4b1IMf4LBy9+6dsD00YmsyW7R0lhEyI6\nLeQ4DT1nn8rPKwU78Jn/wn2N+30ie5kQtMD71J2HlnkKxWIsnJHhHk8nOAYEe3jA\n3RKriNAYxpPS/jqBTF/ckeVKN0lcFVCb4TCV8F7x0xzrr8G+jNA3HkE7fBpO4E1k\nWWwlAryPL25qcaheRNoQav/Rq/ygXgd0S+eJtLx7ENBsbmGWzlY5KuXdOJVWm2KO\nTIo32cax46wIbRw+gySJsDM7tONFhhplSiBr/5CUHqr2ZPKYsfAHcBpwgMSBS1NX\nw93GN3yjj2/tNhELB0J6ZzTlt2FYNCo5i4baPWQrAL6DKBltGaAlKy40qG/5xAOz\n3lshYd6mV59W5FyXanaCbxs1yJosPGq67ykMl8E93NMFByICRRLvkEFUM3DyRFXj\nsIilJPKWu2O9IvBwtn1dy3UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:21,844 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1tm01.customized.domain', '_stamp': '2015-02-12T12:38:21.844037', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAy5t2bHwfASwlwv+FKPmX\nyKNL0WJGuGsVB2j6mVVdvGIV3h3YP018ap/gR+CA+QNohVkzuj0ogULxPSiIU0jR\nRCGVMgHY3fONhLGpV5mWg7FCYgD+35aDUq054nstnL06phre6ZsE4+psbyz1QUZH\nvG7n/l1pCXSgu6pMlRPre/Io4+mb2v+s7+au8RH+GUi9Edbemiqbxw1VADw41UhU\nelxxUc+1ZAwJt0qzlZ19S/VfgBn4xH6yEVMlHWVPjTX2zeCcyLicazQS4vpX+Q93\nQ9Zg7aczPytorTEhlH1jmsKJVsx8xQa59XanRVjWjve63evJDg1H1YuJMd1fwwOh\nQHIC40ru45K5nT22v5Y/e+gP/o65+bHW9wA9c3EXmqokhICGEqf1XRDtWwZyG3zY\n+rUWi/u7AzJqzadSRva2O22f7Oe/PIkdtUYDY4+usbbkaKqkj2YVhQy2u0l4tQn6\n9l4h1/s7yCWRQo3JTYiSxc5XId4b0KwUEldqZSY60raG9JQoww/V5goDw3Sh1oHZ\nifl4Aun1xBsZHQKgx1Lv9FJ3whITfioN07bwF/GRHDOiJTSI/LR6ATpo0Gs7VH/j\ndhSwFT1YVjMDwGrt96JEByDzL4Ub4HGiaGD8XNhuWMcxRiLiGyQeeeHyPgR+WuOL\n1pnHLBXjwNNcxpdwd9PDNXcCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:21,844 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp09.customized.domain', '_stamp': '2015-02-12T12:38:21.844208', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0mAbSZFeypiCyMk/GVQA\nH2eQLYu4BR3Ez3QCtutKwZOl7tqEXHEgEanrgCiAsa4Fni/Wxbwt1B77HOTmg1MA\nbqk3Ya0vk/SxL/VPq8ZHqrPLYSl3s7gibovb0zUVCNz5/y4tULo2dDiGjajWZdnk\nuQVGDvrmS1IcsBSALfoT4UmvsT9e/8oWJCidYYnhSK4MMtl5nmHptQ8DajR3+Q2G\nO3PO3BW2bkY5TVIUbOGRj01Ics0RuSJP04Zgb54ZsgRf0hRyuGTAiwPRo9ZWmOzL\nm5ANu8wButxWGf6tlnpXwRj4V5Wie2G8brvZiCxdibUlXZdguocQ4ic3fUWHwUBi\njp5xX2096JrZtqFwJJygFOg6C1VCtTqOac51sJlHjj2uEKkIzVLLatrVcVSs4v9X\niwEenCFx0vo1DiRDuMT0veIp/LMczSf/0cbsxdwgyWJlGvBD71GvwQyJJxgxtf5T\nbPtu0QUUeOXrzyMmuUUKGuJMOo6AkOlDJQktHXEnbW/6qZs8Bh5qaQ9EtfnVNYPk\nMV3tlV+P9WflVOtLpeHvK2liMcFpCZnDDfk9ODHwiAYBwRSVqA3RLiNcxRTyEOj0\nPcnWj7+lNnwZ4wtlH4G4nbk9j75cIeTNDbRpxjpdp7VnylVsG2yLMTGs3EZjMSiW\nfQFRztCUD4BzrsMTqoYi6nkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:21,855 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp07.customized.domain', '_stamp': '2015-02-12T12:38:21.854511', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnQH2jUVKU4FbUPcJfSSo\nu6/ZOy48FNnV+raYRI2fwdvaMd5DXIlm8bFeTEnVs6JEqJVlV/G7FPWWFOUYv8PV\nZhUUY26xN2sOGpgL7Vf88pg4D6k0K2YD8tH0gEuHn2ucRUlr6FDarObVdZZgoJaJ\nXJoI4+/dOXPKai4GhGKvXotlJ4fmQ173kJIIDfHlV25CcusMZ6N3QaWlcl7ZoR8b\nWMyl+Gsxq06jO36tgiHC9xQAwbNnLbZE3vDO3c5c8nAXWFVDmtfoWKTQzIgSP35b\nrGyhSMZ+iep89hUvEJo0dqkh2Cud5w7/0lQ4wLaA4haFo0m+8c2qQu789gcfMaM4\n3vajhKku83nwadKLIx1igY2LvZHrZ+OkKp/yQoZUrda/URBlzIofW6GNcXY/g5XT\nbulSTueI2W3WLSkDd/W/cWnY5WLuptRo+I+3rfGdE3Z2bOr052HxTr0Ax92d1L2x\nsWvs1mhhG8dzSjT8AU3jxJzvBszGQIO/bwLXE0UBYF+pdMAS+mAA7Suhi9EiyeFw\ndm5eplbrKarfLZkbcy9/7xLQMgDfT4yjKxjb9r5+djsWsQztV4HplTUyVdoks8ya\ny2KycU9nqEdpMTyY+LCtA4ggF3cqCst7NwoftLvGYABCynPmV79JAMELq97Z6OUp\n5Xk8Dtgy5Xs5fAWgeQP7mYECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:21,995 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:21,996 [salt.master                                ][INFO    ] Authentication request from prefix_g1dpm01.customized.domain
2015-02-12 12:38:21,996 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1dpm01.customized.domain
2015-02-12 12:38:22,205 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1dpm01.customized.domain', '_stamp': '2015-02-12T12:38:22.204580', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAywUr5IOIPFk/zxXoYGew\ny/53DXmWt10df6LsX40PQ+aaV7EaKNIkDQiRxN+Yk8r5EhHAHBJKfVtaMBvLIqgW\nFNl/kBlijuYueLDrl03axJoCGp8V4xdFDuFahFXcEjF8paToDQ0tecH+TCdK3yGs\nMHJW4tLmelYRGUEfA+skX4/UsikYMVgpltDOQuf+2oplrOe6ZLIL1C9q/CRw6Pt0\n3VuUXW3365JNm1UAfjhGG3N2x2yEtqrv4b1IMf4LBy9+6dsD00YmsyW7R0lhEyI6\nLeQ4DT1nn8rPKwU78Jn/wn2N+30ie5kQtMD71J2HlnkKxWIsnJHhHk8nOAYEe3jA\n3RKriNAYxpPS/jqBTF/ckeVKN0lcFVCb4TCV8F7x0xzrr8G+jNA3HkE7fBpO4E1k\nWWwlAryPL25qcaheRNoQav/Rq/ygXgd0S+eJtLx7ENBsbmGWzlY5KuXdOJVWm2KO\nTIo32cax46wIbRw+gySJsDM7tONFhhplSiBr/5CUHqr2ZPKYsfAHcBpwgMSBS1NX\nw93GN3yjj2/tNhELB0J6ZzTlt2FYNCo5i4baPWQrAL6DKBltGaAlKy40qG/5xAOz\n3lshYd6mV59W5FyXanaCbxs1yJosPGq67ykMl8E93NMFByICRRLvkEFUM3DyRFXj\nsIilJPKWu2O9IvBwtn1dy3UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:22,440 [salt.master                                ][INFO    ] AES payload received with command _pillar
2015-02-12 12:38:22,475 [salt.utils.jinja                           ][DEBUG   ] Jinja search path: ['/srv/salt/mydc/pillar']
2015-02-12 12:38:22,481 [salt.template                              ][DEBUG   ] Rendered data from file: /srv/salt/mydc/pillar/top.sls:
mydc:
  '*':
    - common
  '^.+g1dpm.+$':
    - match: pcre
    - random_tests

2015-02-12 12:38:22,485 [salt.loaded.int.render.yaml                ][DEBUG   ] Results of YAML rendering: 
OrderedDict([('mydc', OrderedDict([('*', ['common']), ('^.+g1dpm.+$', [OrderedDict([('match', 'pcre')]), 'random_tests'])]))])
2015-02-12 12:38:22,547 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:22,547 [salt.master                                ][INFO    ] Authentication request from prefix_g1mdb01.customized.domain
2015-02-12 12:38:22,547 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1mdb01.customized.domain
2015-02-12 12:38:22,550 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:22,550 [salt.master                                ][INFO    ] Authentication request from prefix_g1dpm01.customized.domain
2015-02-12 12:38:22,551 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1dpm01.customized.domain
2015-02-12 12:38:22,653 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:22,653 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp04.customized.domain
2015-02-12 12:38:22,653 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp04.customized.domain
2015-02-12 12:38:22,729 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1mdb01.customized.domain', '_stamp': '2015-02-12T12:38:22.728531', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6Gbp6w76dAEH/0AGeYtc\npjPn9C5eFKsvr3Fx3PbRWQKWvBHUehGJBUhqmb2jVsTQsf/o86mBUoSs/lNYq+cE\nNJfPdHffa7rhthuBalpfncESiOeGcvhTqZhoRgwifnyYUDvR6Siqf8Oowi3n+kfo\nD5epvLuSVn8XHc9Wrgqw1FbRnfm3q9mOLvnXRljSlbvoBvirxJ84P8LYcDFwJylL\nYKyFwdoUHAzp82VlSNDN76obF6KD6h5QCiy9IvKFpkiCPIww9S5uRGlD/HjHCE+u\nDgHsH7UwrXYbtU+5gXYLOP7AZVLiE37tOfsfC/50bZSH24xEvFTDyVSh/b8MNeqv\nPHWzIAsEQmMFeCfaeiti16cnZ8ntrkxUtNsqklMBYt0cNiyyhFLxinYORSLt0Za+\nHlSATrLi2y//eufm4TciBO1u5UEcrR+X1epI5gVvibjgepIj3duIqAODnhjhsjaW\ndfsacpBL87ItnYZv4cIjtByFeT5tbUcq7Sdfv4uyCmmy9+N+kjmy7Jh/KPFpJRuY\nOFtHv0zi/RQFREwN5DB3RZK5MPlJ8e3mYoTRHIr1P7aBYnLfkLbVgobwMmCZ5zbG\n9PmqbvlnHVZsaHY7PfU95pONAsONEChfu7DHmdZdIBMgezwA136wG+2HoU5XpoV4\nlZ57DIvMx1NXQbFrVzOIujsCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:22,732 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1dpm01.customized.domain', '_stamp': '2015-02-12T12:38:22.731776', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAywUr5IOIPFk/zxXoYGew\ny/53DXmWt10df6LsX40PQ+aaV7EaKNIkDQiRxN+Yk8r5EhHAHBJKfVtaMBvLIqgW\nFNl/kBlijuYueLDrl03axJoCGp8V4xdFDuFahFXcEjF8paToDQ0tecH+TCdK3yGs\nMHJW4tLmelYRGUEfA+skX4/UsikYMVgpltDOQuf+2oplrOe6ZLIL1C9q/CRw6Pt0\n3VuUXW3365JNm1UAfjhGG3N2x2yEtqrv4b1IMf4LBy9+6dsD00YmsyW7R0lhEyI6\nLeQ4DT1nn8rPKwU78Jn/wn2N+30ie5kQtMD71J2HlnkKxWIsnJHhHk8nOAYEe3jA\n3RKriNAYxpPS/jqBTF/ckeVKN0lcFVCb4TCV8F7x0xzrr8G+jNA3HkE7fBpO4E1k\nWWwlAryPL25qcaheRNoQav/Rq/ygXgd0S+eJtLx7ENBsbmGWzlY5KuXdOJVWm2KO\nTIo32cax46wIbRw+gySJsDM7tONFhhplSiBr/5CUHqr2ZPKYsfAHcBpwgMSBS1NX\nw93GN3yjj2/tNhELB0J6ZzTlt2FYNCo5i4baPWQrAL6DKBltGaAlKy40qG/5xAOz\n3lshYd6mV59W5FyXanaCbxs1yJosPGq67ykMl8E93NMFByICRRLvkEFUM3DyRFXj\nsIilJPKWu2O9IvBwtn1dy3UCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:22,818 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp04.customized.domain', '_stamp': '2015-02-12T12:38:22.817636', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAx4m/iO2aty2NKIv+Ej14\nJBcZ6gVZhb/ALvAKCh0c+9kyATwJtVPioUpudXRmrlbM5rHdYUnjLU9e5VSqjswr\nu2955XKg1mskNcn0hHFEN9UVMai9JfsT2Q7TzRmTk0K5HcyTiaPjrlBs4FJ+T1JM\nLhwArGeZ0UTiWXH0YKkyED5YOYprUuhDn70Hy7rwKjvWunBqKslVUHQJGsAYp78H\n1WZ7qOpbHaVxapSsR/PgxBl6TB55NdfpOYvr/EISWt91AXUQo8hD7wFKTI6LA9jV\nHhKtwKMN6OUP1V/WX/bgbsCbJS1PvRZdI1sXMfCZjel+TnFdsPz1uR3ksTY3+9t0\n0CYjD1499181pbqRym3IgZYPcW+IGf5rt34RKDFq7BWJ+Phnivb4rrNqhSIP+KmR\nnpDuTB1Daq51qe0HRtMcHa31hKAknaJG3Wh1w+QUHgW7GwdlrOm6Oo5iSNdwOY5u\nWMzSaSul6tcCXQt1sFp+h0dFLZFdNAxbm9CFlr7eCLhgtBGXlvxn6QSFIIy/Vu5D\n7vNe2Y/DjkiPmNUVqHu6ce1WO41sYegz7KRqP0Fcxet5ig9Sp4LBB8EL+HQbXM8X\n5BEJYM5rG8mYCOX4cWaHzNw6koIXgSTwI8EIgulVfbVArwjq2oIvsVpcshMQsujl\nGrBRwWrTUTRu+3gUVf8AuBkCAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:38:22,951 [salt.master                                ][INFO    ] AES payload received with command _return
2015-02-12 12:38:22,951 [salt.master                                ][INFO    ] Got return from prefix_g1dpm01.customized.domain for job 20150212123814400193
2015-02-12 12:38:22,952 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': [], 'jid': '20150212123814400193', 'return': {'foo': 'bar', 'master': {'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'gitfs_insecure_auth': False, 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'daemon': True, 'publish_session': 86400, 'svnfs_tags': 'tags', 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'file_recv_max_size': 100, 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'ping_on_rotate': False, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'extension_modules': '/var/cache/salt/extmods', 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'peer': {}, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'salt://top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'environment': None, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_g1dpm01.customized.domain', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'saltversion': '2014.7.0', 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'file_client': 'local', 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-12T12:38:22.951859', 'fun': 'pillar.items', 'id': 'prefix_g1dpm01.customized.domain'}
2015-02-12 12:38:22,953 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'fun_args': [], 'jid': '20150212123814400193', 'return': {'foo': 'bar', 'master': {'reactor': [], 'search_index_interval': 3600, 'token_expire': 43200, 'master_sign_pubkey': False, 'ioflo_verbose': 0, 'svnfs_remotes': [], 'syndic_master': '', 'minion_data_cache': True, 'ioflo_realtime': True, 'max_open_files': 100000, 'fileserver_backend': ['roots'], 'outputter_dirs': [], 'master_pubkey_signature': 'master_pubkey_signature', 'gitfs_insecure_auth': False, 'state_auto_order': True, '__role': 'master', 'svnfs_env_blacklist': [], 'cluster_masters': [], 'file_ignore_glob': None, 'auto_accept': False, 'open_mode': False, 'win_repo': '/srv/salt/win/repo', 'hgfs_env_whitelist': [], 'state_verbose': True, 'svnfs_env_whitelist': [], 'cluster_mode': 'paranoid', 'sqlite_queue_dir': '/var/cache/salt/master/queues', 'daemon': True, 'publish_session': 86400, 'svnfs_tags': 'tags', 'ssh_sudo': False, 'keep_jobs': 72, 'fileserver_ignoresymlinks': False, 'minionfs_blacklist': [], 'timeout': 5, 'gitfs_pubkey': '', 'file_roots': {'mydc': ['/srv/salt/mydc/states']}, 'root_dir': '/', 'runner_dirs': [], 'log_granular_levels': {}, 'gitfs_privkey': '', 'svnfs_branches': 'branches', 'log_datefmt_logfile': '%Y-%m-%d %H:%M:%S', 'config_dir': '/etc/salt', 'transport': 'zeromq', 'gitfs_base': 'master', 'gitfs_user': '', 'ssh_passwd': '', 'fileserver_limit_traversal': False, 'ioflo_console_logdir': '', 'conf_file': '/etc/salt/master', 'external_auth': {}, 'syndic_max_event_process_time': 0.5, 'ssh_user': 'root', 'key_logfile': '/var/log/salt/key', 'show_jid': False, 'file_recv_max_size': 100, 'pidfile': '/var/run/salt-master.pid', 'range_server': 'range:80', 'win_repo_mastercachefile': '/srv/salt/win/repo/winrepo.p', 'raet_mutable': False, 'permissive_pki_access': False, 'file_ignore_regex': None, 'pillar_opts': True, 'svnfs_root': '', 'raet_main': True, 'pub_hwm': 1000, 'cachedir': '/var/cache/salt/master', 'ping_on_rotate': False, 'default_include': 'master.d/*.conf', 'preserve_minion_cache': False, 'search': '', 'state_events': False, 'gitfs_mountpoint': '', 'master_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/master.flo', 'state_output': 'full', 'jinja_trim_blocks': False, 'svnfs_trunk': 'trunk', 'enable_gpu_grains': False, 'keysize': 4096, 'extension_modules': '/var/cache/salt/extmods', 'master_sign_key_name': 'master_sign', 'jinja_lstrip_blocks': False, 'cython_enable': False, 'raet_port': 4506, 'ssh_port': '22', 'ext_job_cache': '', 'hash_type': 'md5', 'cli_summary': False, 'peer': {}, 'hgfs_root': '', 'renderer': 'yaml_jinja', 'state_top': 'salt://top.sls', 'gitfs_env_whitelist': [], 'hgfs_branch_method': 'branches', 'max_minions': 0, 'environment': None, 'nodegroups': {}, 'file_recv': False, 'ipv6': False, 'verify_env': True, 'order_masters': False, 'syndic_wait': 5, 'worker_threads': 10, 'pillar_version': 2, 'failhard': False, 'rotate_aes_key': True, 'gitfs_passphrase': '', 'fileserver_followsymlinks': True, 'ioflo_period': 0.01, 'token_dir': '/var/cache/salt/master/tokens', 'worker_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/worker.flo', 'zmq_filtering': False, 'svnfs_mountpoint': '', 'show_timeout': False, 'pillar_source_merging_strategy': 'smart', 'minionfs_env': 'base', 'state_aggregate': False, 'master_tops': {}, 'hgfs_env_blacklist': [], 'hgfs_mountpoint': '', 'master_job_cache': 'local_cache', 'sign_pub_messages': False, 'auth_mode': 1, 'file_buffer_size': 1048576, 'log_fmt_console': '[%(levelname)-8s] %(message)s', 'log_datefmt': '%H:%M:%S', 'serial': 'msgpack', 'rep_hwm': 50000, 'client_acl_blacklist': {}, 'id': 'prefix_g1dpm01.customized.domain', 'minionfs_mountpoint': '', 'loop_interval': 60, 'log_level': 'debug', 'gitfs_env_blacklist': [], 'saltversion': '2014.7.0', 'ret_port': '4506', 'maintenance_floscript': '/usr/lib/python2.6/site-packages/salt/daemons/flo/maint.flo', 'gitfs_root': '', 'gitfs_password': '', 'enumerate_proxy_minions': False, 'syndic_event_forward_timeout': 0.5, 'queue_dirs': [], 'gather_job_timeout': 5, 'pillar_roots': {'mydc': ['/srv/salt/mydc/pillar']}, 'file_client': 'local', 'minionfs_whitelist': [], 'user': 'root', 'master_roots': {'base': ['/srv/salt-master']}, 'hgfs_base': 'default', 'hgfs_remotes': [], 'ext_pillar': [], 'client_acl': {}, 'win_gitrepos': ['https://github.com/saltstack/salt-winrepo.git'], 'master_use_pubkey_signature': False, 'gitfs_remotes': [], 'pki_dir': '/etc/salt/pki/master', 'enforce_mine_cache': False, 'max_event_size': 1048576, 'publish_port': '4505', 'job_cache': True, 'sock_dir': '/var/run/salt/master', 'reactor_refresh_interval': 60, 'log_fmt_logfile': '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s', 'log_file': '/var/log/salt/master', 'interface': '0.0.0.0', 'ssh_timeout': 60}}, 'retcode': 0, 'success': True, 'cmd': '_return', '_stamp': '2015-02-12T12:38:22.952651', 'fun': 'pillar.items', 'id': 'prefix_g1dpm01.customized.domain'}
2015-02-12 12:38:22,954 [salt.loader                                ][DEBUG   ] LazyLoaded local_cache.returner
2015-02-12 12:38:23,662 [salt.master                                ][INFO    ] Clear payload received with command _auth
2015-02-12 12:38:23,662 [salt.master                                ][INFO    ] Authentication request from prefix_g1c1gdp12.customized.domain
2015-02-12 12:38:23,663 [salt.master                                ][INFO    ] Authentication accepted from prefix_g1c1gdp12.customized.domain
2015-02-12 12:38:23,849 [salt.utils.event                           ][DEBUG   ] Sending event - data = {'id': 'prefix_g1c1gdp12.customized.domain', '_stamp': '2015-02-12T12:38:23.848815', 'result': True, 'pub': '-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvlf+ws3hadN3GYHQKX48\nOKI9D3BNOWFIdOj82L6gWLXb8brhwQWHyDUNuqD2Rj0kGBBtNZjcwV/McYhM2I2i\nbU4jilwNDBEvn6F6OzaK+lxDiiVVg1N0EIPPvNZg6B4alDSC+8Do6yI+F5NWfqxH\nCW9eOGk4WsNkLMno3gYuciarpC1fYBdngKUbx0wTynuBjkx+0L45YfmwNkvURhct\nFFF9DPvJlD0iASF/ZkQxEjLJv01L/EvHCJ9QBxOTdwaaoRF9nJ3ugoevvZyutvnP\nl+HQG7c3+cMCBMLNEtywoRfW9nNcwg88WeIBxQg4PMQUdw9jNU/N8SL2yOX443YP\nnXgfLvcinPLf1DO/+hLYvi755/fNhCSYDe3ZqyR1mgfFHqnG9JIE3Fbik9J+i46h\n4pkzgM6nPV2scEWX3COKPA1w57h9XxYODRpwnyRH3FI3KkuZU1lG2NmS5KbdhaQw\ng4zZdO0WZSu2q2zF5GnjEkZJAjYsRttEC1Fgad6P2iCubR+9AHF+VGV0WxQrfdpE\nvD/6SsCKW9KbnvPoU82ObH84DBs6H5jJ5p/kNNHtxwBLHaJTOP6G0A8cyLnrxdl6\nK0EWe9HBMTEV6kXUz+KrAQcwzPlHAeYfD+CdU5dzUjb8vA9X0VvSDUmhvRPMXmiK\nOVtC6VRUlGczEOTeaSpRDqECAwEAAQ==\n-----END PUBLIC KEY-----\n', 'act': 'accept'}
2015-02-12 12:39:19,179 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:39:19,282 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:39:19,302 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:39:19,303 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:39:19,723 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-12 12:39:19,748 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
2015-02-12 12:40:19,809 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:40:19,912 [salt.config                                 ][DEBUG   ] Guessing ID. The id can be explicitly in set /etc/salt/minion
2015-02-12 12:40:19,930 [salt.config                                 ][INFO    ] Found minion id from generate_minion_id(): prefix_inf02.customized.domain
2015-02-12 12:40:19,931 [salt.config                                 ][DEBUG   ] Reading configuration from /etc/salt/master
2015-02-12 12:40:20,351 [salt.loader                                 ][DEBUG   ] LazyLoaded local_cache.clean_old_jobs
2015-02-12 12:40:20,376 [salt.utils.verify                           ][DEBUG   ] This salt-master instance has accepted 22 minion keys.
basepi commented 9 years ago

Wait, but did you time the command? How did it compare in performance with the other version of your pillar file?

spareslant commented 9 years ago

it was quick execution indeed. The other version (the reported one) was close to 2 minutes (120 seconds) . I did not time the command but this execution I guess would have been completed under 6-7 seconds. In other words , it was very quick when compared to the reported version.

spareslant commented 9 years ago

Hi, I see, status of this issue is "pending discussion". Do you need more information on it ?

basepi commented 9 years ago

I have it in an open tab and still want to go through your logs to see if I can figure out what's causing those insane slowdowns, since the pillar file is only assigned to one minion.

I still think the best solution will be to get that grain into the mine or something, because querying all the minions on every pillar refresh is less than ideal. But even querying all the minions I don't feel like it should take that long.

spareslant commented 9 years ago

it is not only taking longer, it is not even generating data from few minions in addition to that. Output from first reported incident shows that.

basepi commented 9 years ago

Assuming your logs are complete, it's only publishing that command like 5 times, which definitely should not be taking 2 minutes. And the fact that the data isn't being generated for all minions is also weird.

Anyway, I'll get this labeled so we can hopefully get some eyes on it.

stale[bot] commented 6 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

If this issue is closed prematurely, please leave a comment and we will gladly reopen the issue.