mirror of
https://github.com/zeropingheroes/lancache-autofill
synced 2025-02-16 13:48:27 +00:00
Updating requirements to Ubuntu 18.04
This commit is contained in:
parent
cf96e17fb0
commit
3c95247794
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
4
Vagrantfile
vendored
4
Vagrantfile
vendored
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue