– hosts: all
vars:
user: maca
tasks:
– template:
src: ./templates/settings.xml
dest: /home/{{user}}/.m2/settings.xml
owner: “{{user}}”
group: “{{user}}”
mode: 0644– template:
src: ./templates/.bash_aliases
dest: /home/{{user}}/.bash_aliases
owner: “{{user}}”
group: “{{user}}”
mode: 0644– template:
src: ./templates/client.ovpn
dest: /etc/openvpn/client.opvn
owner: “{{user}}”
group: “{{user}}”
mode: 0644– template:
src: ./templates/hosts
dest: /etc/hosts
owner: “{{user}}”
group: “{{user}}”
mode: 0644– name: autoremove unused packages
apt:
autoremove: true
Måned: februar 2018
Access your vagrant box from other machines
In order to access your vagrant box from other machines you need to add this to your Vagrantfile
config.vm.network “public_network”, :bridge => ‘eno1’, use_dhcp_assigned_default_route: true
This was tried on an ubuntu 16.04 host
Scrum is a learning framework not a planning tool
I see that most people perceive the scrum framework as a planning tool. I think that it is wrong and I think it is a learning tool. You create a plan in order to learn new stuff when something did not happen according to the plan.
This is also supported be the agile manifesto that states you should “Responding to change over following a plan”