Wire up the bash -> python pass through

This commit is contained in:
Luke Murphy
2020-04-13 09:52:26 +02:00
parent 61445600d3
commit d3846c436a
4 changed files with 51 additions and 4 deletions

10
scripts/postdelete.py Normal file
View 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
View 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
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python3
def predeploy():
"""Pre-deploy steps."""
pass
if __name__ == '__main__':
predeploy()