From bf06ca27ca2d7a022856b4d5ee039c25eb1512e5 Mon Sep 17 00:00:00 2001 From: Attila Farkas <x394097@fi.muni.cz> Date: Fri, 6 Sep 2019 15:34:24 +0200 Subject: [PATCH] change sudo to become and update readme --- README.md | 2 +- templates/host | 2 +- templates/router | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 30912ef..04dd895 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ generate.py is a python program that generates a vagrant source file from a defi ### Usage: 1. Clone the project. 2. Navigate to the project folder. -3. Type `$ python generate.py yaml_file.yaml`. There is a test yaml file in the repository called test.yaml. +3. Type `$ python3 generate.py yaml_file.yaml`. There is a test yaml file in the repository called test.yaml. 4. Run `$ vagrant up` ### Input yaml file structure diff --git a/templates/host b/templates/host index 7eff419..79920e8 100644 --- a/templates/host +++ b/templates/host @@ -5,7 +5,7 @@ tasks: - name: Change default gateway - sudo: yes + become: yes command: route add default gw {{ host.router_ip }} enp0s8 {% endfor %} diff --git a/templates/router b/templates/router index 94654d6..9bd457e 100644 --- a/templates/router +++ b/templates/router @@ -5,13 +5,13 @@ tasks: - name: Enable IP forwarding - sudo: yes + become: yes copy: dest: "/etc/sysctl.conf" content: "net.ipv4.ip_forward=1" - name: Restarting procps service - sudo: yes + become: yes command: /etc/init.d/procps restart {% endfor %} -- GitLab