mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
import cookiecutter if installed and ask a basic question
This commit is contained in:
parent
0f0aae86e8
commit
c11f2349b1
2 changed files with 11 additions and 1 deletions
|
@ -505,4 +505,4 @@ def salt_quickstart():
|
|||
.. versionadded:: Carbon
|
||||
'''
|
||||
import salt.utils.quickstart
|
||||
quickstart.run()
|
||||
salt.utils.quickstart.run()
|
||||
|
|
10
scripts/salt-quickstart
Executable file
10
scripts/salt-quickstart
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
'''
|
||||
Quickstart for creating an/or extending the functionality of your SaltStack installation
|
||||
'''
|
||||
|
||||
from salt.scripts import salt_quickstart
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
salt_quickstart()
|
Loading…
Add table
Reference in a new issue