码迷,mamicode.com
首页 > 其他好文 > 详细

SaltStack源码分析之cmdmod模块

时间:2015-05-28 14:17:59      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:cmdmod



/usr/lib/python2.6/site-packages/salt/modules/cmdmod.py


cmdmod模块用于执行一些命令行

‘‘
A module for shelling out

Keep in mind that this module is insecure, in that it can give whomever has
access to the master root execution access to all salt minions.
‘‘‘
# Import python libs
import time
import functools
import json
import glob
import logging
import os
import shutil
import subprocess
import sys
import traceback
from salt.utils import vt

# Import salt libs
import salt.utils
import salt.utils.timed_subprocess
import salt.grains.extra
from salt._compat import string_types
from salt.exceptions import CommandExecutionError, TimedProcTimeoutError
from salt.log import LOG_LEVELS

# Only available on POSIX systems, nonfatal on windows
try:
    import pwd
except ImportError:
    pass

# Define the module‘s virtual name
__virtualname__ = ‘cmd‘

# Set up logging
log = logging.getLogger(__name__)

DEFAULT_SHELL = salt.grains.extra.shell()[‘shell‘]


def __virtual__():
    ‘‘‘
    Overwriting the cmd python module makes debugging modules
    with pdb a bit harder so lets do it this way instead.
    ‘‘‘
    return __virtualname__








本文出自 “Linux SA John” 博客,请务必保留此出处http://john88wang.blog.51cto.com/2165294/1655913

SaltStack源码分析之cmdmod模块

标签:cmdmod

原文地址:http://john88wang.blog.51cto.com/2165294/1655913

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!