diff options
| author | terminaldweller <thabogre@gmail.com> | 2021-12-02 10:50:38 +0000 | 
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2021-12-02 10:50:38 +0000 | 
| commit | 5b044db592cebbe2bdb827daad081d6cba1673c8 (patch) | |
| tree | a8adb838015f92007c69a16dcb35cdacd8d4759e /vagrant/ff/Vagrantfile | |
| parent | more updates (diff) | |
| download | scripts-5b044db592cebbe2bdb827daad081d6cba1673c8.tar.gz scripts-5b044db592cebbe2bdb827daad081d6cba1673c8.zip | |
updates
Diffstat (limited to 'vagrant/ff/Vagrantfile')
| -rw-r--r-- | vagrant/ff/Vagrantfile | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/vagrant/ff/Vagrantfile b/vagrant/ff/Vagrantfile index fe3a560..f9edef6 100644 --- a/vagrant/ff/Vagrantfile +++ b/vagrant/ff/Vagrantfile @@ -8,7 +8,7 @@ MEMORY = 6144  Vagrant.require_version '>= 2.2.6'  Vagrant.configure('2') do |config| -  config.vm.box = 'generic/debian10' +  config.vm.box = 'generic/debian11'    config.vm.box_version = '3.4.2'    config.vm.box_check_update = false    config.vm.synced_folder './', MOUNT_POINT, type: 'nfs' @@ -26,7 +26,7 @@ Vagrant.configure('2') do |config|      vb.memory = MEMORY.to_s    end    config.vm.provider 'libvirt' do |libvirt| -    libvirt.default_prefix = 'farzad-deb10-pam-' +    libvirt.default_prefix = 'deb11-ff-'      libvirt.driver = 'kvm'      libvirt.nested = true      libvirt.machine_type = 'pc-q35-3.1' @@ -49,7 +49,7 @@ Vagrant.configure('2') do |config|    config.vm.provision 'provision', type: 'shell', name: 'provision', privileged: false, reboot: false, inline: <<-SHELL      set -ex      sudo apt update && sudo apt upgrade -y -    sudo apt install -y vim tmux python3 python3-pip curl +    sudo apt install -y vim tmux python3 python3-pip curl tor torsocks      pip3 install ranger-fm    SHELL  end | 
