Merge pull request #22664 from rallytime/bp-22635

Backport #22635 to 2015.2
This commit is contained in:
Thomas S Hatch 2015-04-14 14:07:21 -06:00
commit 9c7a8a8145

View File

@ -74,6 +74,8 @@ if CONFIG_DIR is None:
CONFIG_DIR = os.path.join(ROOT_DIR, 'usr', 'local', 'etc', 'salt') CONFIG_DIR = os.path.join(ROOT_DIR, 'usr', 'local', 'etc', 'salt')
elif 'netbsd' in __PLATFORM: elif 'netbsd' in __PLATFORM:
CONFIG_DIR = os.path.join(ROOT_DIR, 'usr', 'pkg', 'etc', 'salt') CONFIG_DIR = os.path.join(ROOT_DIR, 'usr', 'pkg', 'etc', 'salt')
elif 'sunos5' in __PLATFORM:
CONFIG_DIR = os.path.join(ROOT_DIR, 'opt', 'local', 'etc', 'salt')
else: else:
CONFIG_DIR = os.path.join(ROOT_DIR, 'etc', 'salt') CONFIG_DIR = os.path.join(ROOT_DIR, 'etc', 'salt')