# HG changeset patch # User Pascal Bellard # Date 1369583314 -7200 # Node ID 749ffdd335d71c43521234a8d21929ddd75c595a # Parent 870fa05f4d39ce1d59204234e37667280baf1f4a vim*: unblock post_install diff -r 870fa05f4d39 -r 749ffdd335d7 gvim/receipt --- a/gvim/receipt Sat May 25 21:08:27 2013 +0200 +++ b/gvim/receipt Sun May 26 17:48:34 2013 +0200 @@ -63,7 +63,7 @@ echo "" echo "**** Actual VI link : $cmd" echo "" - echo -n "Do you want vim for /bin/vi (y/N) ? : "; read anser + echo -n "Do you want vim for /bin/vi (y/N) ? : "; read -t 30 anser if [ "$anser" == "y" ]; then echo "" echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..." diff -r 870fa05f4d39 -r 749ffdd335d7 nail/receipt --- a/nail/receipt Sat May 25 21:08:27 2013 +0200 +++ b/nail/receipt Sun May 26 17:48:34 2013 +0200 @@ -50,7 +50,7 @@ echo "" echo "/usr/bin/mailx exists" echo -n "Do you want /usr/bin/nail for /usr/bin/mailx (y/N) ? : " - read anser + read -t 30 anser if [ "$anser" == "y" ]; then echo "" echo -n "linking /usr/bin/mailx to /usr/bin/nail" diff -r 870fa05f4d39 -r 749ffdd335d7 ntpclient/receipt --- a/ntpclient/receipt Sat May 25 21:08:27 2013 +0200 +++ b/ntpclient/receipt Sun May 26 17:48:34 2013 +0200 @@ -31,7 +31,7 @@ { [ -n "$1" ] && return echo "" - echo -n "Do you want to run ntpclient in automatic mode (y/N): "; read anser + echo -n "Do you want to run ntpclient in automatic mode (y/N): "; read t 30 anser if [ "$anser" == "y" ]; then srv="fr.pool.ntp.org" echo "" diff -r 870fa05f4d39 -r 749ffdd335d7 vim-tiny/receipt --- a/vim-tiny/receipt Sat May 25 21:08:27 2013 +0200 +++ b/vim-tiny/receipt Sun May 26 17:48:34 2013 +0200 @@ -62,7 +62,7 @@ echo "" echo "**** Actual VI link : $cmd" echo "" - echo -n "Do you want vim for /bin/vi (y/N) ? : "; read anser + echo -n "Do you want vim for /bin/vi (y/N) ? : "; read -t 30 anser if [ "$anser" == "y" ]; then echo "" echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..." diff -r 870fa05f4d39 -r 749ffdd335d7 vim/receipt --- a/vim/receipt Sat May 25 21:08:27 2013 +0200 +++ b/vim/receipt Sun May 26 17:48:34 2013 +0200 @@ -59,7 +59,7 @@ echo "" echo "**** Actual VI link : $cmd" echo "" - echo -n "Do you want vim for /bin/vi (y/N) ? : "; read anser + echo -n "Do you want vim for /bin/vi (y/N) ? : "; read -t 30 anser if [ "$anser" == "y" ]; then echo "" echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..."