From 97c2a07ff3c939fa830fb200ccd18157eed387b7 Mon Sep 17 00:00:00 2001 From: ipvsean Date: Tue, 25 Feb 2020 13:34:59 -0500 Subject: [PATCH] sync --- .../group_vars/all/01_deploy_application.yml | 33 +++++++------------ playbooks/group_vars/all/25_blah.yml | 25 ++++++++++++++ playbooks/surveys/00_empty_survey.json | 9 ----- playbooks/surveys/01_deploy_application.json | 30 ----------------- 4 files changed, 37 insertions(+), 60 deletions(-) create mode 100644 playbooks/group_vars/all/25_blah.yml delete mode 100644 playbooks/surveys/00_empty_survey.json delete mode 100644 playbooks/surveys/01_deploy_application.json diff --git a/playbooks/group_vars/all/01_deploy_application.yml b/playbooks/group_vars/all/01_deploy_application.yml index 9331faf..ef20beb 100644 --- a/playbooks/group_vars/all/01_deploy_application.yml +++ b/playbooks/group_vars/all/01_deploy_application.yml @@ -1,25 +1,16 @@ --- survey_deploy_application: - name: L3 Survey - description: Prompt for interface name, ipv4 and ipv6 + name: Deploy application survey + description: Which application do you want to install? spec: - - type: text - question_name: Which interface? - question_description: Please specify the interface name - variable: interface_name + - type: multiplechoice + question_name: Select a command you would like to execute + question_description: select the application + variable: application required: true - default: lo0 - - type: text - question_name: Please set an IPv4 Address - question_description: e.g. 192.168.1.1/24, it is OK to leave this blank if you are - using IPv6 only - variable: interface_ipv4 - required: false - default: 192.168.1.1/24 - - type: text - question_name: Please Set an IPv6 Address - question_description: e.g. fc00::2/64, it is OK to leave this blank if you are using - IPv4 only - variable: interface_ipv6 - required: false - default: fc00::2/64 + default: httpd + choices: + - httpd + - nginx + - htop + - gdb diff --git a/playbooks/group_vars/all/25_blah.yml b/playbooks/group_vars/all/25_blah.yml new file mode 100644 index 0000000..919ee17 --- /dev/null +++ b/playbooks/group_vars/all/25_blah.yml @@ -0,0 +1,25 @@ +--- +test_survey: + name: L3 Survey + description: Prompt for interface name, ipv4 and ipv6 + spec: + - type: text + question_name: Which interface? + question_description: Please specify the interface name + variable: interface_name + required: true + default: lo0 + - type: text + question_name: Please set an IPv4 Address + question_description: e.g. 192.168.1.1/24, it is OK to leave this blank if you are + using IPv6 only + variable: interface_ipv4 + required: false + default: 192.168.1.1/24 + - type: text + question_name: Please Set an IPv6 Address + question_description: e.g. fc00::2/64, it is OK to leave this blank if you are using + IPv4 only + variable: interface_ipv6 + required: false + default: fc00::2/64 diff --git a/playbooks/surveys/00_empty_survey.json b/playbooks/surveys/00_empty_survey.json deleted file mode 100644 index c234575..0000000 --- a/playbooks/surveys/00_empty_survey.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "empty survey", - "description": "don't use this survey", - "spec": [ - { - "type": "text", - } - ] -} diff --git a/playbooks/surveys/01_deploy_application.json b/playbooks/surveys/01_deploy_application.json deleted file mode 100644 index 2982e85..0000000 --- a/playbooks/surveys/01_deploy_application.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "name": "L3 Survey", - "description": "Prompt for interface name, ipv4 and ipv6", - "spec": [ - { - "type": "text", - "question_name": "Which interface?", - "question_description": "Please specify the interface name", - "variable": "interface_name", - "required": true, - "default": "lo0" - }, - { - "type": "text", - "question_name": "Please set an IPv4 Address", - "question_description": "e.g. 192.168.1.1/24, it is OK to leave this blank if you are using IPv6 only", - "variable": "interface_ipv4", - "required": false, - "default": "192.168.1.1/24" - }, - { - "type": "text", - "question_name": "Please Set an IPv6 Address", - "question_description": "e.g. fc00::2/64, it is OK to leave this blank if you are using IPv4 only", - "variable": "interface_ipv6", - "required": false, - "default": "fc00::2/64" - } - ] -}