This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[foo] | |
localhost ansible_host=localhost ansible_connection=local |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install -y libnotify.x86_64 gcc | |
wget http://entrproject.org/code/entr-3.6.tar.gz | |
tar -xzf entr-3* | |
cd eradman-entr-* | |
./configure | |
make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure(2) do |config| | |
config.vm.hostname = "m-c1" | |
config.vm.box = "fgrehm/trusty64-lxc" | |
config.vm.provider :lxc do |lxc| | |
lxc.container_name = "c1" | |
lxc.customize 'network.type', 'veth' | |
# lxc.customize 'network.type', 'veth' | |
lxc.customize 'network.link', 'virbr0' | |
lxc.customize 'network.flag', 'up' |