Hello, I try to launch the command "aptitude update" and "aptitude safe-upgrade" in order to have at each launch a environment updated automaticaly.
I try too change the interface language and the keyboard configuration. So i use this script: ------------------------------------------- #!/bin/bash sudo su if [ -f /usr/local/myscript.run ] then echo "already run" else echo "first run" apt-get install aptitude aptitude install language-support-fr language-pack-fr language-pack-gnome-fr-base language-pack-gnome-fr dpkg-reconfigure keyboard-configuration aptitude install gimp handbrake touch /usr/local/myscript.run fi aptitude update aptitude safe-upgrade ---------------------------------------------------------------- By default, vagrant abort the update and installation packages when at this question "Do you want to continue? [Y/n/?]" How to make vagrant choose Y ? And for reconfigure my keyboard-configuration, how to indicate my choice? (Keyboard model/Country Origin/etc..) -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
