mirror of
https://github.com/saltstack/salt.git
synced 2025-04-15 09:10:20 +00:00
file permissions: from 775 to 755
Signed-off-by: Markus Gattol <markus.gattol@sunoano.org>
This commit is contained in:
parent
eb97e480ba
commit
38e5d2b2cb
9 changed files with 20 additions and 7 deletions
|
@ -5,6 +5,7 @@ Publish commands to the salt system from the command line on the master.
|
|||
|
||||
import salt.cli
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
|
|
|
@ -6,6 +6,7 @@ minion to run.
|
|||
|
||||
import salt.cli
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
|
|
|
@ -5,6 +5,7 @@ Publish commands to the salt system from the command line on the master.
|
|||
|
||||
import salt.cli
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
'''
|
||||
Manage the authentication keys with salt-key
|
||||
'''
|
||||
|
||||
import salt.cli
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
#!/usr/bin/env python2
|
||||
'''
|
||||
Start the salt-master
|
||||
Start the salt-master
|
||||
'''
|
||||
|
||||
import salt
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
'''
|
||||
This script is used to kick off a salt minion daemon
|
||||
'''
|
||||
import salt
|
||||
|
||||
import os
|
||||
import salt
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
|
|
|
@ -5,6 +5,7 @@ Execute a salt convenience routine
|
|||
|
||||
import salt.cli
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
'''
|
||||
This script is used to kick off a salt syndic daemon
|
||||
'''
|
||||
import salt
|
||||
|
||||
import os
|
||||
import salt
|
||||
|
||||
|
||||
def main():
|
||||
'''
|
||||
|
|
9
setup.py
9
setup.py
|
@ -2,14 +2,15 @@
|
|||
'''
|
||||
The setup script for salt
|
||||
'''
|
||||
import os
|
||||
import sys
|
||||
|
||||
from Cython.Distutils import build_ext
|
||||
from distutils import log
|
||||
from distutils.cmd import Command
|
||||
from distutils.core import setup
|
||||
from distutils.extension import Extension
|
||||
from distutils.sysconfig import get_python_lib, PREFIX
|
||||
from Cython.Distutils import build_ext
|
||||
import os
|
||||
import sys
|
||||
|
||||
from salt import __version__
|
||||
|
||||
|
@ -41,7 +42,7 @@ setup(
|
|||
author='Thomas S Hatch',
|
||||
author_email='thatch45@gmail.com',
|
||||
url='https://github.com/thatch45/salt',
|
||||
classifiers = [
|
||||
classifiers=[
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Cython',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
|
|
Loading…
Add table
Reference in a new issue