diff --git a/README.md b/README.md index 8480f91..2b932ee 100755 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ Automatically fill a [lancache](https://github.com/zeropingheroes/lancache) with # Requirements * A working [lancache](https://github.com/zeropingheroes/lancache) -* Ubuntu 16.04 x64, configured to download via the lancache +* Ubuntu 18.04 x64, configured to download via the lancache * Sufficient disk space to (temporarily) store the downloaded content * Dependencies detailed in *Installation* section # Installation 1. `sudo apt update -y` -2. `sudo apt install -y lib32gcc1 lib32stdc++6 lib32tinfo5 lib32ncurses5 php7.0-cli php7.0-mbstring php7.0-sqlite php7.0-bcmath composer expect zip unzip` +2. `sudo apt install -y lib32gcc1 lib32stdc++6 lib32tinfo5 lib32ncurses5 php7.2-cli php7.2-mbstring php7.2-sqlite php7.2-bcmath composer expect zip unzip` 3. `git clone https://github.com/zeropingheroes/lancache-autofill.git && cd lancache-autofill` 4. `./install.sh` 5. Get a Steam API key from http://steamcommunity.com/dev/apikey and add it to the `.env` file diff --git a/Vagrantfile b/Vagrantfile index 50e5404..d3811b1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "ubuntu/xenial64" + config.vm.box = "ubuntu/bionic64" config.vm.hostname = "lancache-autofill" config.vm.network "public_network", use_dhcp_assigned_default_route: true @@ -19,7 +19,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provision "apt", type: "shell", - inline: "apt update && apt install -y lib32gcc1 lib32stdc++6 lib32tinfo5 lib32ncurses5 php7.0-cli php7.0-mbstring php7.0-sqlite php7.0-bcmath composer expect zip unzip" + inline: "apt update && apt install -y lib32gcc1 lib32stdc++6 lib32tinfo5 lib32ncurses5 php7.2-cli php7.2-mbstring php7.2-sqlite php7.2-bcmath composer expect zip unzip" config.vm.provision "project", type: "shell",