switch to release candidate, reworked authnz module, some typos

This commit is contained in:
levasseur
2021-07-26 18:22:40 +02:00
parent 47d21ad829
commit 71cb84b5b8
5 changed files with 83 additions and 39 deletions

View File

@@ -82,20 +82,20 @@ prnt() {
case $1 in
"I")
HEADS="[ ${IGreen}info${DEFAULTFG} ]"
shift
shift
;;
"W")
HEADS="[${IYellow}Attention${DEFAULTFG}]"
shift
shift
;;
"E")
HEADS="[ ${IRed}ERREUR${DEFAULTFG} ]"
shift
shift
;;
"m")
HEADS=" "
shift
;;
"m")
HEADS=" "
shift
;;
esac
echo -e "${IWhite}$(date $DATEFORMAT)${DEFAULTFG} ${HEADS} $@"
}