tazbug diff tazbug-box @ rev 15
Dont crypt pass twice when generating SliTaz key
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Apr 03 19:18:26 2012 +0200 (2012-04-03) |
parents | bf39c8d28dcc |
children | 6f171d79db65 |
line diff
1.1 --- a/tazbug-box Tue Apr 03 12:09:16 2012 +0200 1.2 +++ b/tazbug-box Tue Apr 03 19:18:26 2012 +0200 1.3 @@ -162,7 +162,7 @@ 1.4 user="$(echo $main | cut -d "|" -f 2)" 1.5 mail="$(echo $main | cut -d "|" -f 3)" 1.6 pass="$(echo $main | cut -d "|" -f 4)" 1.7 - tazbug signup --name="$name" --user=$user --mail=$mail \ 1.8 + ./tazbug signup --name="$name" --user=$user --mail=$mail \ 1.9 --pass="$pass" | output 1.10 } 1.11 1.12 @@ -180,7 +180,7 @@ 1.13 signup) 1.14 signup ;; 1.15 *) 1.16 - if [ ! $HOME/.config/slitaz/account.conf ]; then 1.17 + if [ ! -f $HOME/.config/slitaz/account.conf ]; then 1.18 signup 1.19 fi 1.20 new_bug ;;