debug func return 0 to allow chain function
This commit is contained in:
parent
5a2fb8c13b
commit
c1d23c04f6
|
@ -69,6 +69,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME}: ${local_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
is_apt_upgrade_absent() { # {{{
|
||||
|
|
|
@ -64,6 +64,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME} : ${local_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
is_apt_upgrade_absent() { # {{{
|
||||
|
|
|
@ -70,6 +70,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME}: ${local_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
is_apt_upgrade_present() { # {{{
|
||||
|
|
|
@ -76,6 +76,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME}: ${local_debug_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
message() { # {{{
|
||||
|
|
|
@ -42,6 +42,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME}: ${local_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
is_proc_running() { # {{{
|
||||
|
|
|
@ -51,6 +51,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME} : ${local_debug_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
define_vars() { # {{{
|
||||
|
|
|
@ -71,6 +71,7 @@ debug_message() { # {{{
|
|||
## Print message if DEBUG is enable (=0)
|
||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME} : ${local_debug_message}"
|
||||
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
message() { # {{{
|
||||
|
|
Loading…
Reference in New Issue