Skip to content

Instantly share code, notes, and snippets.

View archf's full-sized avatar

Felix Archambault archf

View GitHub Profile
@archf
archf / local
Last active May 8, 2021 10:31
ansible variables group_names and group_names from hostvars have different content when printed
[foo]
localhost ansible_host=localhost ansible_connection=local
@archf
archf / Vagrantfile
Created November 7, 2016 20:58
vagrant-lxc
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'
@archf
archf / gist:341efde9dbb2603836c9edb3cfd21b3f
Created October 24, 2016 16:07
install entr on centos
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