1
0
Fork 0

move error codes to end of file

This commit is contained in:
Asif Bacchus 2020-03-13 23:48:25 -06:00
parent 80ee3c7a3d
commit b6fc492881
1 changed files with 11 additions and 7 deletions

View File

@ -6,13 +6,6 @@
#
# error code reference:
# 0: exited normally, no errors
# 1: unknown startup option passed to script
# 2: current user is unauthorized to operate docker
# 3: 'params' file not found in same directory as script
# 5: specified TLS-related files (cert, key or chain) not found
# text formatting presets
cyan=$(tput setaf 6)
@ -472,3 +465,14 @@ fi
### exit gracefully
exit 0
# error code reference:
# 0: exited normally, no errors
# 1: unknown startup option passed to script
# 2: current user is unauthorized to operate docker
# 3: 'params' file not found in same directory as script
# 5: specified TLS-related files (cert, key or chain) not found
#EOF