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