From 8a23155947b9b27f84a1ad60fac28a72b92ef28a Mon Sep 17 00:00:00 2001 From: Attila Farkas <x394097@fi.muni.cz> Date: Thu, 10 Oct 2019 17:40:46 +0200 Subject: [PATCH] rename generate to create --- README.md | 4 ++-- generate.py => create.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename generate.py => create.py (100%) diff --git a/README.md b/README.md index 4a502ac..ac4163c 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ A next generation of https://gitlab.ics.muni.cz/KYPO-content/KYPO-Creator -generate.py is a python program that generates a vagrant source file from a definition in yaml. This yaml file contains definitions of devices (hosts and routers) and networks. Its structure is described below. +create.py is a python program that generates a vagrant source file from a definition in yaml. This yaml file contains definitions of devices (hosts and routers) and networks. Its structure is described below. ### Usage: 1. Clone the project. 2. Navigate to the project folder. -3. Type `$ python3 generate.py yaml_file.yml`. There is a test yaml file in the repository called test.yml. +3. Type `$ python3 create.py yaml_file.yml`. There is a test yaml file in the repository called test.yml. 4. Run `$ vagrant up` ### Input yaml file structure diff --git a/generate.py b/create.py similarity index 100% rename from generate.py rename to create.py -- GitLab