"Correction typo"
This commit is contained in:
parent
96468d7945
commit
b155be0c28
@ -20,6 +20,7 @@
|
|||||||
#
|
#
|
||||||
# @OPT: f:list_vm:list_vm:1/1:true:::
|
# @OPT: f:list_vm:list_vm:1/1:true:::
|
||||||
# @OPT: f:gen_error:gen_error:1/1:false:::
|
# @OPT: f:gen_error:gen_error:1/1:false:::
|
||||||
|
# @OPT: f:argv:argv:1/::::
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------------------------------------------
|
||||||
# Liste des paramètres de configuration:
|
# Liste des paramètres de configuration:
|
||||||
@ -42,10 +43,10 @@
|
|||||||
## Syntaxe :
|
## Syntaxe :
|
||||||
## --------
|
## --------
|
||||||
##
|
##
|
||||||
## prompt> exp_dummy_script.sh [-list_vm false] [ -gen_error true ]
|
## prompt> exp_dummy_script.sh [-list_vm false] [ -gen_error true ] [-argv arg1 arg2 ...]
|
||||||
##
|
##
|
||||||
## ex:
|
## ex:
|
||||||
## exp_dummy_script.sh -list_vm false -gen_error true
|
## exp_dummy_script.sh -list_vm false -gen_error true -argv plop plip plap
|
||||||
##
|
##
|
||||||
## Prérequis:
|
## Prérequis:
|
||||||
## ----------
|
## ----------
|
||||||
@ -59,7 +60,7 @@
|
|||||||
## Par défaut list_vm vaut true.
|
## Par défaut list_vm vaut true.
|
||||||
##
|
##
|
||||||
## Si l'option -gen_error est positionnée à true, le script génèrera une erreur. Le but de cette option
|
## Si l'option -gen_error est positionnée à true, le script génèrera une erreur. Le but de cette option
|
||||||
## étant de montrer la gestion des erreurs. Par défaut gen_error vaut false.
|
## étant d'illustrer la gestion des erreurs. Par défaut gen_error vaut false.
|
||||||
##
|
##
|
||||||
#------------------------------------------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------------------------------------------
|
||||||
# Initialisation de l'environement
|
# Initialisation de l'environement
|
||||||
@ -74,7 +75,7 @@ fi
|
|||||||
source /etc/profile.d/tetalab.sh
|
source /etc/profile.d/tetalab.sh
|
||||||
|
|
||||||
if [ ! -f ${NC_EXPL_CFG}/init.conf ]; then
|
if [ ! -f ${NC_EXPL_CFG}/init.conf ]; then
|
||||||
echo "Le fichier d'initialisation du socle \${NC_EXPL_CFG}/init.conf n'éxiste pas !"
|
echo "Le fichier d'initialisation du socle \${NC_EXPL_CFG}/init.conf n'existe pas !"
|
||||||
echo "Arrêt du script par sécurité"
|
echo "Arrêt du script par sécurité"
|
||||||
exit 250
|
exit 250
|
||||||
fi
|
fi
|
||||||
@ -156,6 +157,24 @@ function list_vm
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function print_argv
|
||||||
|
{
|
||||||
|
if [ ${#argv} -gt 0 ]; then
|
||||||
|
fct_message "Arguments optionnels:"
|
||||||
|
for ARG in ${argv[@]}
|
||||||
|
do
|
||||||
|
fct_message " - ${ARG}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function cat_piped_data
|
||||||
|
{
|
||||||
|
fct_message "Données pipées:"
|
||||||
|
cat > ${TMP_DIR}/${SH_PROG}_${SH_SESSION_ID}
|
||||||
|
cat ${TMP_DIR}/${SH_PROG}_${SH_SESSION_ID}
|
||||||
|
}
|
||||||
|
|
||||||
#------------------------------------------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------------------------------------------
|
||||||
# Traitement
|
# Traitement
|
||||||
#------------------------------------------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------------------------------------------
|
||||||
@ -163,6 +182,8 @@ function list_vm
|
|||||||
check_config
|
check_config
|
||||||
mk_temp_dir
|
mk_temp_dir
|
||||||
list_vm
|
list_vm
|
||||||
|
print_argv
|
||||||
gen_error
|
gen_error
|
||||||
|
cat_piped_data
|
||||||
rm_temp_dir
|
rm_temp_dir
|
||||||
fct_erreur 0
|
fct_erreur 0
|
||||||
|
@ -537,7 +537,7 @@ then
|
|||||||
if (( 2#${L_VAL} & 2#00100 ))
|
if (( 2#${L_VAL} & 2#00100 ))
|
||||||
then
|
then
|
||||||
# -- Option hist
|
# -- Option hist
|
||||||
fct_affiche_ligne entete "Historique des ${SH_ARG_HIST} derniere execution du script ${SH_PROG}" "Date,18" "Utilisateur(Origine,20:Exec,20)" "Session,16" "Log,3" "Cpt,3" "Code,5" "Parametre,50"
|
fct_affiche_ligne entete "Historique des ${SH_ARG_HIST} dernieres executions du script ${SH_PROG}" "Date,18" "Utilisateur(Origine,20:Exec,20)" "Session,16" "Log,3" "Cpt,3" "Code,5" "Parametre,50"
|
||||||
SH_ARG_HIST=$(( ${SH_ARG_HIST} * 3 ))
|
SH_ARG_HIST=$(( ${SH_ARG_HIST} * 3 ))
|
||||||
tail -${SH_ARG_HIST} ${SH_FICTRC}|grep "Parametre" | while read L_VAL
|
tail -${SH_ARG_HIST} ${SH_FICTRC}|grep "Parametre" | while read L_VAL
|
||||||
do
|
do
|
||||||
@ -577,4 +577,4 @@ fi
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
typeset -Ffx fct_params
|
typeset -Ffx fct_params
|
||||||
|
Loading…
Reference in New Issue
Block a user