[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 #!/bin/bash 2 #shares_Win95: netlogon 3 #shares_Win2K: homes 4 #shares_WinXP: homes 5 #shares_Vista: homes 6 #shares_Seven: homes 7 #action: start 8 #level: 99 9 # 10 ##### Script lanceur d'applications ##### 11 # 12 # Auteur: Stéphane Boireau (A.S. - Relais de Bernay/Pont-Audemer (27)) 13 # 14 ## $Id: lanceur_applications.sh 2654 2007-12-30 21:37:00Z keyser $ ## 15 # 16 # /usr/share/se3/sbin/lanceur_applications.sh 17 # Dernière modification: 07/06/2006 18 19 if [ "$1" = "--help" -o "$1" = "-h" ]; then 20 echo "Script permettant de lancer des applications lors du login" 21 echo "via root preexec..." 22 echo "" 23 echo "Usage : pas d'option" 24 exit 25 fi 26 27 # Dossier contenant les scripts: 28 dossier_script="/usr/share/se3/scripts" 29 30 # Pour activer l'affichage d'infos... 31 debug=1 32 33 affich_debug(){ 34 if [ "$debug" = "1" ]; then 35 echo "$1" 36 fi 37 } 38 39 # Valeur tmp: 40 ladate=$(date +"%Y.%m.%d-%H.%M.%S") 41 42 # Récupération des paramètres: 43 utilisateur="$1" 44 machine="$2" 45 ip="$3" 46 arch="$4" 47 date="$5" 48 49 # Ajouter le lancement d'autres scripts si nécessaire... 50 if [ -e $dossier_script/mes_commandes_perso.sh ]; then 51 $dossier_script/mes_commandes_perso.sh $utilisateur $machine $ip $arch $date 52 fi
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |