Wire up the bash -> python pass through
This commit is contained in:
10
scripts/postdelete.py
Normal file
10
scripts/postdelete.py
Normal file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
def postdelete():
|
||||
"""Post-delete steps."""
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
postdelete()
|
10
scripts/postdeploy.py
Normal file
10
scripts/postdeploy.py
Normal file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
def postdeploy():
|
||||
"""Post-deploy steps."""
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
postdeploy()
|
10
scripts/predeploy.py
Normal file
10
scripts/predeploy.py
Normal file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
def predeploy():
|
||||
"""Pre-deploy steps."""
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
predeploy()
|
Reference in New Issue
Block a user