| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 | # -*- mode: ruby -*-# vi: set ft=ruby :# Automated creation of testing environments / binaries on misc. platformsdef packages_prepare_wheezy  return <<-EOF      # debian 7 wheezy does not have lz4, but it is available from wheezy-backports:      echo "deb http://http.debian.net/debian wheezy-backports main" > /etc/apt/sources.list.d/wheezy-backports.list  EOFenddef packages_debianoid  return <<-EOF    if id "vagrant" >/dev/null 2>&1; then      username='vagrant'      home_dir=/home/vagrant    else      username='ubuntu'      home_dir=/home/ubuntu    fi    apt-get update    # install all the (security and other) updates    apt-get dist-upgrade -y    # for building borgbackup and dependencies:    apt-get install -y libssl-dev libacl1-dev liblz4-dev libfuse-dev fuse pkg-config    usermod -a -G fuse $username    chgrp fuse /dev/fuse    chmod 666 /dev/fuse    apt-get install -y fakeroot build-essential git    apt-get install -y python3-dev python3-setuptools    # for building python:    apt-get install -y zlib1g-dev libbz2-dev libncurses5-dev libreadline-dev liblzma-dev libsqlite3-dev    # this way it works on older dists (like ubuntu 12.04) also:    # for python 3.2 on ubuntu 12.04 we need pip<8 and virtualenv<14 as    # newer versions are not compatible with py 3.2 any more.    easy_install3 'pip<8.0'    pip3 install 'virtualenv<14.0'    touch $home_dir/.bash_profile ; chown $username $home_dir/.bash_profile  EOFenddef packages_redhatted  return <<-EOF    yum install -y epel-release    yum update -y    # for building borgbackup and dependencies:    yum install -y openssl-devel openssl libacl-devel libacl lz4-devel fuse-devel fuse pkgconfig    usermod -a -G fuse vagrant    chgrp fuse /dev/fuse    chmod 666 /dev/fuse    yum install -y fakeroot gcc git patch    # needed to compile msgpack-python (otherwise it will use slow fallback code):    yum install -y gcc-c++    # for building python:    yum install -y zlib-devel bzip2-devel ncurses-devel readline-devel xz xz-devel sqlite-devel    #yum install -y python-pip    #pip install virtualenv    touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile  EOFenddef packages_darwin  return <<-EOF    # install all the (security and other) updates    sudo softwareupdate --ignore iTunesX    sudo softwareupdate --ignore iTunes    sudo softwareupdate --install --all    # get osxfuse 3.x release code from github:    curl -s -L https://github.com/osxfuse/osxfuse/releases/download/osxfuse-3.5.4/osxfuse-3.5.4.dmg >osxfuse.dmg    MOUNTDIR=$(echo `hdiutil mount osxfuse.dmg | tail -1 | awk '{$1="" ; print $0}'` | xargs -0 echo) \    && sudo installer -pkg "${MOUNTDIR}/Extras/FUSE for macOS 3.5.4.pkg" -target /    sudo chown -R vagrant /usr/local  # brew must be able to create stuff here    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"    brew update    brew install openssl    brew install lz4    brew install xz  # required for python lzma module    brew install fakeroot    brew install git    brew install pkg-config    touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile  EOFenddef packages_freebsd  return <<-EOF    # VM has no hostname set    hostname freebsd    # install all the (security and other) updates, base system    freebsd-update --not-running-from-cron fetch install    # for building borgbackup and dependencies:    pkg install -y openssl liblz4 fusefs-libs pkgconf    pkg install -y git bash    # for building python:    pkg install -y sqlite3    # make bash default / work:    chsh -s bash vagrant    mount -t fdescfs fdesc /dev/fd    echo 'fdesc	/dev/fd		fdescfs		rw	0	0' >> /etc/fstab    # make FUSE work    echo 'fuse_load="YES"' >> /boot/loader.conf    echo 'vfs.usermount=1' >> /etc/sysctl.conf    kldload fuse    sysctl vfs.usermount=1    pw groupmod operator -M vagrant    # /dev/fuse has group operator    chmod 666 /dev/fuse    touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile    # install all the (security and other) updates, packages    pkg update    yes | pkg upgrade  EOFenddef packages_openbsd  return <<-EOF    echo 'installpath = http://ftp.hostserver.de/pub/OpenBSD/6.0/packages/amd64/' > /etc/pkg.conf    echo 'export PKG_PATH=http://ftp.hostserver.de/pub/OpenBSD/6.0/packages/amd64/' >> ~/.profile    . ~/.profile    pkg_add bash    chsh -s /usr/local/bin/bash vagrant    pkg_add openssl    pkg_add lz4    pkg_add git  # no fakeroot    pkg_add py3-setuptools    ln -sf /usr/local/bin/python3.4 /usr/local/bin/python3    ln -sf /usr/local/bin/python3.4 /usr/local/bin/python    easy_install-3.4 pip    pip3 install virtualenv    touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile  EOFenddef packages_netbsd  return <<-EOF    hostname netbsd  # the box we use has an invalid hostname    PKG_PATH="ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/amd64/6.1.5/All/"    export PKG_PATH    pkg_add mozilla-rootcerts lz4 git bash    chsh -s bash vagrant    mkdir -p /usr/local/opt/lz4/include    mkdir -p /usr/local/opt/lz4/lib    ln -s /usr/pkg/include/lz4*.h /usr/local/opt/lz4/include/    ln -s /usr/pkg/lib/liblz4* /usr/local/opt/lz4/lib/    touch /etc/openssl/openssl.cnf  # avoids a flood of "can't open ..."    mozilla-rootcerts install    pkg_add pkg-config  # avoids some "pkg-config missing" error msg, even without fuse    # pkg_add fuse  # llfuse supports netbsd, but is still buggy.    # https://bitbucket.org/nikratio/python-llfuse/issues/70/perfuse_open-setsockopt-no-buffer-space    pkg_add python34 py34-setuptools    ln -s /usr/pkg/bin/python3.4 /usr/pkg/bin/python    ln -s /usr/pkg/bin/python3.4 /usr/pkg/bin/python3    easy_install-3.4 pip    pip install virtualenv    touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile  EOFend# Install required cygwin packages and configure environment## Microsoft/EdgeOnWindows10 image has MLS-OpenSSH installed by default,# which is based on cygwin x86_64 but should not be used together with cygwin.# In order to have have cygwin compatible bash 'ImagePath' is replaced with# cygrunsrv of newly installed cygwin## supported cygwin versions:#   x86_64#   x86def packages_cygwin(version)  setup_exe = "setup-#{version}.exe"  return <<-EOF    mkdir -p /cygdrive/c/cygwin    powershell -Command '$client = new-object System.Net.WebClient; $client.DownloadFile("https://www.cygwin.com/#{setup_exe}","C:\\cygwin\\#{setup_exe}")'    echo '    REM --- Change to use different CygWin platform and final install path    set CYGSETUP=#{setup_exe}    REM --- Install build version of CygWin in a subfolder    set OURPATH=%cd%    set CYGBUILD="C:\\cygwin\\CygWin"    set CYGMIRROR=ftp://mirrors.kernel.org/sourceware/cygwin/    set BASEPKGS=openssh,rsync    set BUILDPKGS=python3,python3-setuptools,python-devel,binutils,gcc-g++,libopenssl,openssl-devel,git,make,liblz4-devel,liblz4_1,curl    %CYGSETUP% -q -B -o -n -R %CYGBUILD% -L -D -s %CYGMIRROR% -P %BASEPKGS%,%BUILDPKGS%    cd /d C:\\cygwin\\CygWin\\bin    regtool set /HKLM/SYSTEM/CurrentControlSet/Services/OpenSSHd/ImagePath "C:\\cygwin\\CygWin\\bin\\cygrunsrv.exe"    bash -c "ssh-host-config --no"    ' > /cygdrive/c/cygwin/install.bat    cd /cygdrive/c/cygwin && cmd.exe /c install.bat    echo "alias mkdir='mkdir -p'" > ~/.profile    echo "export CYGWIN_ROOT=/cygdrive/c/cygwin/CygWin" >> ~/.profile    echo 'export PATH=$PATH:$CYGWIN_ROOT/bin' >> ~/.profile    echo '' > ~/.bash_profile    cmd.exe /c 'setx /m PATH "%PATH%;C:\\cygwin\\CygWin\\bin"'    source ~/.profile    echo 'db_home: windows' > $CYGWIN_ROOT/etc/nsswitch.conf  EOFenddef install_cygwin_venv  return <<-EOF      easy_install-3.4 pip      pip install virtualenv  EOFenddef install_pyenv(boxname)  return <<-EOF    curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash    echo 'export PATH="$HOME/.pyenv/bin:/vagrant/borg:$PATH"' >> ~/.bash_profile    echo 'eval "$(pyenv init -)"' >> ~/.bash_profile    echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile    echo 'export PYTHON_CONFIGURE_OPTS="--enable-shared"' >> ~/.bash_profile    echo 'export LANG=en_US.UTF-8' >> ~/.bash_profile  EOFenddef fix_pyenv_darwin(boxname)  return <<-EOF    echo 'export PYTHON_CONFIGURE_OPTS="--enable-framework"' >> ~/.bash_profile  EOFenddef install_pythons(boxname)  return <<-EOF    . ~/.bash_profile    pyenv install 3.4.0  # tests    pyenv install 3.5.0  # tests    pyenv install 3.6.0  # tests    pyenv install 3.5.3  # binary build, use latest 3.5.x release    pyenv rehash  EOFenddef build_sys_venv(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    virtualenv --python=python3 borg-env  EOFenddef build_pyenv_venv(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    # use the latest 3.5 release    pyenv global 3.5.3    pyenv virtualenv 3.5.3 borg-env    ln -s ~/.pyenv/versions/borg-env .  EOFenddef install_borg(fuse)  script = <<-EOF    . ~/.bash_profile    cd /vagrant/borg    . borg-env/bin/activate    pip install -U wheel  # upgrade wheel, too old for 3.5    cd borg    # clean up (wrong/outdated) stuff we likely got via rsync:    rm -f borg/*.so borg/*.cpy*    rm -f borg/{chunker,crypto,compress,hashindex,platform_linux}.c    rm -rf borg/__pycache__ borg/support/__pycache__ borg/testsuite/__pycache__    pip install -r requirements.d/development.txt  EOF  if fuse    script += <<-EOF      # by using [fuse], setup.py can handle different fuse requirements:      pip install -e .[fuse]    EOF  else    script += <<-EOF      pip install -e .      # do not install llfuse into the virtualenvs built by tox:      sed -i.bak '/fuse.txt/d' tox.ini    EOF  end  return scriptenddef install_pyinstaller()  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    . borg-env/bin/activate    git clone https://github.com/thomaswaldmann/pyinstaller.git    cd pyinstaller    git checkout v3.2.1    python setup.py install  EOFenddef build_binary_with_pyinstaller(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    . borg-env/bin/activate    cd borg    pyinstaller --clean --distpath=/vagrant/borg scripts/borg.exe.spec  EOFenddef run_tests(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg/borg    . ../borg-env/bin/activate    if which pyenv 2> /dev/null; then      # for testing, use the earliest point releases of the supported python versions:      pyenv global 3.4.0 3.5.0 3.6.0      pyenv local 3.4.0 3.5.0 3.6.0    fi    # otherwise: just use the system python    if which fakeroot 2> /dev/null; then      echo "Running tox WITH fakeroot -u"      fakeroot -u tox --skip-missing-interpreters    else      echo "Running tox WITHOUT fakeroot -u"      tox --skip-missing-interpreters    fi  EOFenddef fix_perms  return <<-EOF    # . ~/.profile    if id "vagrant" >/dev/null 2>&1; then      chown -R vagrant /vagrant/borg    else      chown -R ubuntu /vagrant/borg    fi  EOFendVagrant.configure(2) do |config|  # use rsync to copy content to the folder  config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"], :rsync__chown => false  # do not let the VM access . on the host machine via the default shared folder!  config.vm.synced_folder ".", "/vagrant", disabled: true  # fix permissions on synced folder  config.vm.provision "fix perms", :type => :shell, :inline => fix_perms  config.vm.provider :virtualbox do |v|    #v.gui = true    v.cpus = 1  end  # Linux  config.vm.define "centos7_64" do |b|    b.vm.box = "centos/7"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "install system packages", :type => :shell, :inline => packages_redhatted    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("centos7_64")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("centos7_64")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("centos7_64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("centos7_64")  end  config.vm.define "centos6_32" do |b|    b.vm.box = "centos6-32"    b.vm.provider :virtualbox do |v|      v.memory = 1024    end    b.vm.provision "install system packages", :type => :shell, :inline => packages_redhatted    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("centos6_32")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("centos6_32")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("centos6_32")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("centos6_32")  end  config.vm.define "centos6_64" do |b|    b.vm.box = "centos6-64"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "install system packages", :type => :shell, :inline => packages_redhatted    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("centos6_64")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("centos6_64")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("centos6_64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("centos6_64")  end  config.vm.define "xenial64" do |b|    b.vm.box = "ubuntu/xenial64"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("xenial64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("xenial64")  end  config.vm.define "trusty64" do |b|    b.vm.box = "ubuntu/trusty64"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("trusty64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("trusty64")  end  config.vm.define "jessie64" do |b|    b.vm.box = "debian/jessie64"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("jessie64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("jessie64")  end  config.vm.define "wheezy32" do |b|    b.vm.box = "boxcutter/debian7-i386"    b.vm.provider :virtualbox do |v|      v.memory = 1024    end    b.vm.provision "packages prepare wheezy", :type => :shell, :inline => packages_prepare_wheezy    b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("wheezy32")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("wheezy32")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("wheezy32")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()    b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("wheezy32")    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("wheezy32")  end  config.vm.define "wheezy64" do |b|    b.vm.box = "boxcutter/debian7"    b.vm.provision "packages prepare wheezy", :type => :shell, :inline => packages_prepare_wheezy    b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("wheezy64")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("wheezy64")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("wheezy64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()    b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("wheezy64")    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("wheezy64")  end  # OS X  config.vm.define "darwin64" do |b|    b.vm.box = "jhcook/yosemite-clitools"    b.vm.provider :virtualbox do |v|      v.customize ['modifyvm', :id, '--ostype', 'MacOS1010_64']      v.customize ['modifyvm', :id, '--paravirtprovider', 'default']      # Adjust CPU settings according to      # https://github.com/geerlingguy/macos-virtualbox-vm      v.customize ['modifyvm', :id, '--cpuidset',                   '00000001', '000306a9', '00020800', '80000201', '178bfbff']      # Disable USB variant requiring Virtualbox proprietary extension pack      v.customize ["modifyvm", :id, '--usbehci', 'off', '--usbxhci', 'off']    end    b.vm.provision "packages darwin", :type => :shell, :privileged => false, :inline => packages_darwin    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("darwin64")    b.vm.provision "fix pyenv", :type => :shell, :privileged => false, :inline => fix_pyenv_darwin("darwin64")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("darwin64")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("darwin64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()    b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("darwin64")    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("darwin64")  end  # BSD  # note: the FreeBSD-10.3-RELEASE box needs "vagrant up" twice to start.  config.vm.define "freebsd64" do |b|    b.vm.box = "freebsd/FreeBSD-10.3-RELEASE"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.ssh.shell = "sh"    b.vm.provision "install system packages", :type => :shell, :inline => packages_freebsd    b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("freebsd")    b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("freebsd")    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("freebsd")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)    b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()    b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("freebsd")    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("freebsd")  end  config.vm.define "openbsd64" do |b|    b.vm.box = "openbsd60-64"  # note: basic openbsd install for vagrant WITH sudo and rsync pre-installed    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "packages openbsd", :type => :shell, :inline => packages_openbsd    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openbsd64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openbsd64")  end  config.vm.define "netbsd64" do |b|    b.vm.box = "netbsd70-64"    b.vm.provider :virtualbox do |v|      v.memory = 1536    end    b.vm.provision "packages netbsd", :type => :shell, :inline => packages_netbsd    b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("netbsd64")    b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)    b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("netbsd64")  end  config.vm.define "windows10" do |b|    b.vm.box = "Microsoft/EdgeOnWindows10"    b.vm.guest = :windows    b.vm.boot_timeout = 180    b.vm.graceful_halt_timeout = 120    b.ssh.shell = "sh -l"    b.ssh.username = "IEUser"    b.ssh.password = "Passw0rd!"    b.ssh.insert_key = false    b.vm.provider :virtualbox do |v|      v.memory = 2048      #v.gui = true    end    # fix permissions placeholder    b.vm.provision "fix perms", :type => :shell,  :privileged => false, :inline => "echo 'fix permission placeholder'"    b.vm.provision "packages cygwin", :type => :shell, :privileged => false, :inline => packages_cygwin("x86_64")    b.vm.provision :reload    b.vm.provision "cygwin install pip", :type => :shell, :privileged => false, :inline => install_cygwin_venv    b.vm.provision "cygwin build env", :type => :shell, :privileged => false, :inline => build_sys_venv("windows10")        b.vm.provision "cygwin install borg", :type => :shell, :privileged => false, :inline => install_borg(false)    b.vm.provision "cygwin run tests", :type => :shell, :privileged => false, :inline => run_tests("windows10")  endend
 |