moved code to new libs, conf moved to subfolder, conf splitted into unit and specific files

This commit is contained in:
levasseur
2021-06-01 12:35:38 +02:00
parent 6c70c0826f
commit 50f4f40eff
5 changed files with 167 additions and 187 deletions

89
lib/display.sh Normal file
View File

@@ -0,0 +1,89 @@
# Defines color codes (standard 16 colors display)
DEFAULTFG="\e[0;39m"
DEFAULTBG="\e[0;49m"
DEFAULTCOL=${DEFAULTBG}${DEFAULTFG}
# Regular Colors
Black='\e[0;30m'
Red='\e[0;31m'
Green='\e[0;32m'
Yellow='\e[0;33m'
Blue='\e[0;34m'
Purple='\e[0;35m'
Cyan='\e[0;36m'
White='\e[0;37m'
# Bold
BBlack='\e[1;30m'
BRed='\e[1;31m'
BGreen='\e[1;32m'
BYellow='\e[1;33m'
BBlue='\e[1;34m'
BPurple='\e[1;35m'
BCyan='\e[1;36m'
BWhite='\e[1;37m'
# Underline
UBlack='\e[4;30m'
URed='\e[4;31m'
UGreen='\e[4;32m'
UYellow='\e[4;33m'
UBlue='\e[4;34m'
UPurple='\e[4;35m'
UCyan='\e[4;36m'
UWhite='\e[4;37m'
# Background
On_Black='\e[40m'
On_Red='\e[41m'
On_Green='\e[42m'
On_Yellow='\e[43m'
On_Blue='\e[44m'
On_Purple='\e[45m'
On_Cyan='\e[46m'
On_White='\e[47m'
# High Intensity
IBlack='\e[0;90m'
IRed='\e[0;91m'
IGreen='\e[0;92m'
IYellow='\e[0;93m'
IBlue='\e[0;94m'
IPurple='\e[0;95m'
ICyan='\e[0;96m'
IWhite='\e[0;97m'
# Bold High Intensity
BIBlack='\e[1;90m'
BIRed='\e[1;91m'
BIGreen='\e[1;92m'
BIYellow='\e[1;93m'
BIBlue='\e[1;94m'
BIPurple='\e[1;95m'
BICyan='\e[1;96m'
BIWhite='\e[1;97m'
# High Intensity backgrounds
On_IBlack='\e[0;100m'
On_IRed='\e[0;101m'
On_IGreen='\e[0;102m'
On_IYellow='\e[0;103m'
On_IBlue='\e[0;104m'
On_IPurple='\e[0;105m'
On_ICyan='\e[0;106m'
On_IWhite='\e[0;107m'
# Affiche le status avec en-tête coloré et timestamp
# (valeur de $1 : I=info, W=warning, E=error, pas d'entête si différent)
prnt() {
case $1 in
"I")
HEADS="[ ${IGreen}info${DEFAULTFG} ]"
shift
;;
"W")
HEADS="[ ${IYellow}Attention${DEFAULTFG} ]"
shift
;;
"E")
HEADS="[ ${IRed}ERREUR${DEFAULTFG} ]"
shift
;;
esac
echo -e "${IWhite}$(date $DATEFORMAT)${DEFAULTFG} ${HEADS} $@"
}
export -f prnt

50
lib/filefct.sh Normal file
View File

@@ -0,0 +1,50 @@
# Backup original installation files (or any old files if runned several time on same file)
backupdist()
{
[[ $# -lt 1 ]] && prnt E "backupdist(): Au moins un argument requis." && return 1
for file in $@; do
if [[ -e ${file} ]]; then
prnt I "Création d'une copie de sauvegarde de ${file}..."
cp -av $file $file.dist.$(date --rfc-3339=seconds | sed -e 's/ /-/' -e 's/://g')
fi
done
}
export -f backupdist
# Install file to the host (specific first then general)
installfile()
{
local filelist=""
local i=0
[[ $# -lt 2 ]] && (
prnt E "installfile(): Au moins deux arguments requis."
return 1
)
[[ $(echo $@ | grep "\*\|\?") ]] && (
prnt E "installfile(): Les wildcards sont interdits."
return 2
)
for arg in $@; do
if [[ -f $BASEGPDIR/profile/$HOSTNAME/$arg ]]; then
filelist="$filelist $BASEGPDIR/profile/$HOSTNAME/$arg"
elif [[ -f $BASEGPDIR/profile/$arg ]]; then
filelist="$filelist $BASEGPDIR/profile/$arg"
else
filelist="$filelist $arg"
fi
done
for i in $filelist; do :; done
if [[ ! $i==/* ]]; then
prnt E "installfile(): Target must be on the root filesystem."
exit 3
fi
prnt I "Création su répertoire $(dirname $i) si nécessaire..."
mkdir -pv $(dirname $i)
prnt I "Copie des fichiers ${filelist}..."
cp -av $filelist
}
export -f installfile