Update Vagrant environment

Signed-off-by: Clement Verna <cverna@tutanota.com>
This commit is contained in:
Clement Verna 2019-01-31 21:32:26 +01:00 committed by Clement Verna
parent ee6da348d6
commit 5ee82ffa31
3 changed files with 15 additions and 14 deletions

View File

@ -2,7 +2,10 @@
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "fedora/25-cloud-base"
config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/29/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-29-1.2.x86_64.vagrant-libvirt.box"
config.vm.box = "f29-cloud-libvirt"
config.vm.box_download_checksum = "30a58db024a5203fea0fee8fffcbc1998b3e6de787dbc504dc5c511b97c84777"
config.vm.box_download_checksum_type = "sha256"
config.vm.network "forwarded_port", guest: 8000, host: 8000
config.vm.synced_folder ".", "/vagrant", type: "sshfs"

View File

@ -1,15 +1,14 @@
---
- name: Install basic packages
dnf:
name: "{{ item }}"
name:
- bash-completion
- dstat
- htop
- screen
- tmux
- tree
- gcc
- redhat-rpm-config
- python-devel
state: present
with_items:
- bash-completion
- dstat
- htop
- screen
- tmux
- tree
- gcc
- redhat-rpm-config
- python-devel

View File

@ -6,8 +6,7 @@
- name: Install PIP deps
pip:
name: "{{ item }}"
with_items:
name:
- twisted
- command: cp /vagrant/development.ini.example /vagrant/development.ini