* attila/src/attila.sh :

- Bug : la version "courte" de l'option "--asim" ("-A") ne positionnait
       pas le flag ASIM a "y". On reinstallait donc localement l'outil.
This commit is contained in:
Jean-Paul Chaput 2002-11-21 10:11:27 +00:00
parent d942bcf98c
commit 4f7504d7e1
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# $Id: attila.sh,v 1.10 2002/11/11 20:47:31 jpc Exp $ # $Id: attila.sh,v 1.11 2002/11/21 10:11:27 jpc Exp $
# #
# /------------------------------------------------------------------\ # /------------------------------------------------------------------\
# | | # | |
@ -624,7 +624,7 @@
S) RSH="ssh";; S) RSH="ssh";;
U) ASIM="n";; U) ASIM="n";;
F) FULL="y";; F) FULL="y";;
A) ASIM="n"; FULL="y";; A) ASIM="y"; FULL="y";;
*) echo "attila:error: Invalid option \`$CH'." *) echo "attila:error: Invalid option \`$CH'."
print_usage; exit 1;; print_usage; exit 1;;