Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cyber-sandbox-creator
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MUNI-KYPO-CSC
cyber-sandbox-creator
Commits
7e5088a7
Commit
7e5088a7
authored
4 years ago
by
Attila Farkas
Browse files
Options
Downloads
Patches
Plain Diff
change verbosity level to vvvv
parent
516eebd8
No related branches found
No related tags found
1 merge request
!7
Resolve Refactoring
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/input_argument_parser.py
+1
-1
1 addition, 1 deletion
modules/input_argument_parser.py
modules/vagrant_generator.py
+32
-7
32 additions, 7 deletions
modules/vagrant_generator.py
with
33 additions
and
8 deletions
modules/input_argument_parser.py
+
1
−
1
View file @
7e5088a7
...
@@ -16,7 +16,7 @@ def parse_input_args(argv, flags):
...
@@ -16,7 +16,7 @@ def parse_input_args(argv, flags):
parser
.
add_argument
(
"
definition_file
"
,
help
=
"
path to the input yaml definition
"
)
parser
.
add_argument
(
"
definition_file
"
,
help
=
"
path to the input yaml definition
"
)
parser
.
add_argument
(
"
--ansible_local
"
,
help
=
"
uses ansible_local for provisioning instead of ansible
"
,
action
=
"
store_true
"
)
parser
.
add_argument
(
"
--ansible_local
"
,
help
=
"
uses ansible_local for provisioning instead of ansible
"
,
action
=
"
store_true
"
)
parser
.
add_argument
(
"
--verbose_ansible
"
,
help
=
"
sets verbose output for ansible
"
,
action
=
"
store_true
"
)
parser
.
add_argument
(
"
--verbose_ansible
"
,
help
=
"
sets verbose output for ansible
(-vvvv)
"
,
action
=
"
store_true
"
)
parser
.
add_argument
(
"
--border_router
"
,
help
=
"
creates a border router with connection to all routers
"
,
action
=
"
store_true
"
)
parser
.
add_argument
(
"
--border_router
"
,
help
=
"
creates a border router with connection to all routers
"
,
action
=
"
store_true
"
)
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
...
...
This diff is collapsed.
Click to expand it.
modules/vagrant_generator.py
+
32
−
7
View file @
7e5088a7
...
@@ -21,6 +21,22 @@ def _create_simple_attribute(key, value, attribute_type):
...
@@ -21,6 +21,22 @@ def _create_simple_attribute(key, value, attribute_type):
return
attribute
return
attribute
def
_create_complex_attribute
(
key
,
value
):
"""
Creates complex vagrant attributes that are not string, integer or
boolean.
"""
SEPARATORS
=
{
VAGRANT_MAPPING
[
"
other
"
][
"
synced_folder
"
]:
""
}
attribute
=
dict
()
attribute
[
"
type
"
]
=
"
other
"
attribute
[
"
command
"
]
=
key
attribute
[
"
separator
"
]
=
SEPARATORS
[
key
]
attribute
[
"
value
"
]
=
value
return
attribute
def
_create_commands
(
device_attributes
,
device_type
,
input_definitions
,
flags
):
def
_create_commands
(
device_attributes
,
device_type
,
input_definitions
,
flags
):
"""
This function creates basic vagrant definition commands for a device.
"""
"""
This function creates basic vagrant definition commands for a device.
"""
...
@@ -34,6 +50,8 @@ def _create_commands(device_attributes, device_type, input_definitions, flags):
...
@@ -34,6 +50,8 @@ def _create_commands(device_attributes, device_type, input_definitions, flags):
commands
.
append
(
_create_simple_attribute
(
VAGRANT_MAPPING
[
"
boolean
"
][
attribute
],
value
,
"
boolean
"
))
commands
.
append
(
_create_simple_attribute
(
VAGRANT_MAPPING
[
"
boolean
"
][
attribute
],
value
,
"
boolean
"
))
elif
attribute
in
VAGRANT_MAPPING
[
"
integer
"
]:
elif
attribute
in
VAGRANT_MAPPING
[
"
integer
"
]:
commands
.
append
(
_create_simple_attribute
(
VAGRANT_MAPPING
[
"
integer
"
][
attribute
],
value
,
"
integer
"
))
commands
.
append
(
_create_simple_attribute
(
VAGRANT_MAPPING
[
"
integer
"
][
attribute
],
value
,
"
integer
"
))
elif
attribute
in
VAGRANT_MAPPING
[
"
other
"
]:
commands
.
append
(
_create_complex_attribute
(
VAGRANT_MAPPING
[
"
other
"
][
attribute
],
value
))
elif
attribute
in
VIRTUALBOX_MAPPING
[
"
integer
"
]:
elif
attribute
in
VIRTUALBOX_MAPPING
[
"
integer
"
]:
vb_commands
.
append
(
_create_simple_attribute
(
VIRTUALBOX_MAPPING
[
"
integer
"
][
attribute
],
value
,
"
integer
"
))
vb_commands
.
append
(
_create_simple_attribute
(
VIRTUALBOX_MAPPING
[
"
integer
"
][
attribute
],
value
,
"
integer
"
))
...
@@ -60,25 +78,32 @@ def _create_ansible_commands(playbook_location, input_definitions, flags):
...
@@ -60,25 +78,32 @@ def _create_ansible_commands(playbook_location, input_definitions, flags):
if
"
verbose_ansible
"
in
flags
and
flags
[
"
verbose_ansible
"
]:
if
"
verbose_ansible
"
in
flags
and
flags
[
"
verbose_ansible
"
]:
verbosity
=
dict
()
verbosity
=
dict
()
verbosity
[
"
type
"
]
=
"
boolean
"
verbosity
[
"
type
"
]
=
"
string
"
verbosity
[
"
command
"
]
=
"
verbose
"
verbosity
[
"
command
"
]
=
"
verbose
"
verbosity
[
"
value
"
]
=
True
verbosity
[
"
value
"
]
=
"
vvvv
"
commands
.
append
(
verbosity
)
commands
.
append
(
verbosity
)
groups
=
dict
()
groups
=
dict
()
groups
[
"
type
"
]
=
"
dictionary
"
groups
[
"
type
"
]
=
"
groups
"
groups
[
"
command
"
]
=
"
groups
"
groups
[
"
groups
"
]
=
dict
()
groups
[
"
dictionary
"
]
=
dict
()
host_names
=
[]
host_names
=
[]
for
host
in
input_definitions
[
"
hosts
"
]:
for
host
in
input_definitions
[
"
hosts
"
]:
host_names
.
append
(
host
[
"
name
"
])
host_names
.
append
(
host
[
"
name
"
])
groups
[
"
dictionary
"
][
"
hosts
"
]
=
host_names
groups
[
"
groups
"
][
"
hosts
"
]
=
host_names
router_names
=
[]
router_names
=
[]
for
router
in
input_definitions
[
"
routers
"
]:
for
router
in
input_definitions
[
"
routers
"
]:
router_names
.
append
(
router
[
"
name
"
])
router_names
.
append
(
router
[
"
name
"
])
groups
[
"
dictionary
"
][
"
routers
"
]
=
router_names
groups
[
"
groups
"
][
"
routers
"
]
=
router_names
commands
.
append
(
groups
)
commands
.
append
(
groups
)
if
"
ansible_local
"
in
flags
and
flags
[
"
ansible_local
"
]:
extravars
=
dict
()
extravars
[
"
type
"
]
=
"
dictionary
"
extravars
[
"
command
"
]
=
"
extra_vars
"
extravars
[
"
dictionary
"
]
=
dict
()
extravars
[
"
dictionary
"
][
"
ansible_python_interpreter
"
]
=
"
\"
/usr/bin/python3
\"
"
commands
.
append
(
extravars
)
return
commands
return
commands
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment