mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
quick fix for issue #18447
This commit is contained in:
parent
38903a94a1
commit
c6a501ebda
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
@ -406,6 +406,8 @@ class Build(build):
|
|||
|
||||
class Install(install):
|
||||
user_options = install.user_options + [
|
||||
('salt-transport=', None, 'The transport to prepare salt for. Choices are \'zeromq\' '
|
||||
'\'raet\' or \'both\'. Defaults to \'zeromq\'', 'zeromq'),
|
||||
('salt-root-dir=', None,
|
||||
'Salt\'s pre-configured root directory'),
|
||||
('salt-config-dir=', None,
|
||||
|
@ -442,6 +444,7 @@ class Install(install):
|
|||
self.salt_logs_dir = LOGS_DIR
|
||||
self.salt_pidfile_dir = PIDFILE_DIR
|
||||
# pylint: enable=undefined-variable
|
||||
self.salt_transport = None
|
||||
|
||||
def finalize_options(self):
|
||||
install.finalize_options(self)
|
||||
|
|
Loading…
Add table
Reference in a new issue