Merge branch '2014.7' into '2015.2'

Conflicts:
	tests/buildpackage.py
This commit is contained in:
rallytime 2015-01-06 20:32:36 -07:00
commit 80b07f3578
5 changed files with 7 additions and 2 deletions

View file

@ -93,7 +93,6 @@ def _enable(name, started, result=True, **kwargs):
if __salt__['service.enabled'](name, **kwargs):
# Service is enabled
if started is True:
ret['changes'][name] = True
ret['comment'] = ('Service {0} is already enabled,'
' and is running').format(name)
return ret

View file

@ -7,7 +7,9 @@
# This script is designed for speed, therefore it does not use mock and does not
# run tests. It *will* install the build deps on the machine running the script.
#
# pylint: disable=E0599
# pylint: disable=file-perms
import errno
import glob
import logging

View file

@ -468,6 +468,7 @@ def run(opts):
'SALT_MINION_BOOTSTRAP_RELEASE',
opts.bootstrap_salt_commit[:7]
)
print('Minion reported salt version: {0}'.format(version_info))
if bootstrap_minion_version not in version_info[vm_name]:
print('\n\nATTENTION!!!!\n')
print('The boostrapped minion version commit does not contain the desired commit:')

View file

@ -3,6 +3,8 @@
'''
Discover all instances of unittest.TestCase in this directory.
'''
# pylint: disable=file-perms
# Import python libs
from __future__ import print_function
import os

View file

@ -20,6 +20,7 @@ A history file is maintained in ~/.saltsh_history.
completion behavior can be customized via the ~/.inputrc file.
'''
# pylint: disable=file-perms
# Import python libs
import atexit