REL-0.1 Initial Release

This commit is contained in:
cytopia
2018-02-23 08:53:30 +01:00
parent c594390bb3
commit f9782dbab6
47 changed files with 5952 additions and 31 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/sh
set -e
set -u
############################################################
# Functions
############################################################
###
### Debug level
###
get_debug_level() {
if ! env_set "${1}"; then
# Return default specified value
echo "${2}"
else
# Return env value
env_get "${1}"
fi
}