Merge pull request #49571 from rallytime/merge-2018.3

[2018.3] Merge forward from 2017.7 to 2018.3
This commit is contained in:
Nicole Thomas 2018-09-10 08:58:14 -04:00 committed by GitHub
commit 9004422d84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

5
.github/CODEOWNERS vendored
View file

@ -1,14 +1,11 @@
# SALTSTACK CODE OWNERS
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file
# for more info about the CODEOWNERS file
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# See https://help.github.com/articles/about-codeowners/
# for more info about the CODEOWNERS file
# This file uses an fnmatch-style matching pattern.
# Team Boto

View file

@ -25,6 +25,8 @@ class ServiceModuleTest(ModuleCase):
os_family = self.run_function('grains.get', ['os_family'])
os_release = self.run_function('grains.get', ['osrelease'])
if os_family == 'RedHat':
if os_release[0] == '7':
self.skipTest('Disabled on CentOS 7 until we can fix SSH connection issues.')
self.service_name = 'crond'
elif os_family == 'Arch':
self.service_name = 'sshd'