file permissions: from 775 to 755

Signed-off-by: Markus Gattol <markus.gattol@sunoano.org>
This commit is contained in:
Markus Gattol 2011-11-14 15:49:06 +00:00
parent eb97e480ba
commit 38e5d2b2cb
9 changed files with 20 additions and 7 deletions

View file

@ -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

View file

@ -6,6 +6,7 @@ minion to run.
import salt.cli
def main():
'''
The main function

View file

@ -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

View file

@ -2,8 +2,10 @@
'''
Manage the authentication keys with salt-key
'''
import salt.cli
def main():
'''
The main function

View file

@ -1,9 +1,11 @@
#!/usr/bin/env python2
'''
Start the salt-master
Start the salt-master
'''
import salt
def main():
'''
The main function

View file

@ -2,8 +2,10 @@
'''
This script is used to kick off a salt minion daemon
'''
import salt
import os
import salt
def main():
'''

View file

@ -5,6 +5,7 @@ Execute a salt convenience routine
import salt.cli
def main():
'''
The main function

View file

@ -2,8 +2,10 @@
'''
This script is used to kick off a salt syndic daemon
'''
import salt
import os
import salt
def main():
'''

View file

@ -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',