Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos.core
Commits
7c75d7e7
Commit
7c75d7e7
authored
12 years ago
by
Cédric Le Ninivin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added create tap option to register
parent
5ca971e0
master
alain
amarisoft
cleanup
cliff-cleanup
cygwin-link-local
feat/cli_request_file
feat/only-complete
feat/software-check-shebang
feature/cgroups
feature/format-crumbled
feature/manager-cpuset
feature/option_create_tun
feature/tun-cgroup-cleanup
fix/fd-leak
fix/logrotate-snapshot
fix/mock-leak-break-tests
fix/print-and-hashseed
fix/promise-output-text
fix/python3.6
fix/repair_navigator_test
format_loop
garbage-collect
hosting_daily_invoice
hotfix/proxy-root-instance
master-dev
monitoring
proxy-sqlalchemy
rafael
registry-hotfix
revert-889711ed
seb
slapgrid_client_test
slaphateoas
slapos-override-env
slapos.cache.source
slaposjs
slapproxy-connection-parameter
wip/cli_request_file_merge
wip/initialize_connection_raise_errors
wip/rc
wip/release1.5.0
wip/slapproxy_loadComputerConfigurationFromXML
wip/testcase
wip/typing
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.18
1.3.17
1.3.16
1.3.15
1.3.14
1.3.13
1.3.12
1.3.11
1.3.10
1.3.9
1.3.8
1.3.7
1.3.6.3
1.3.6.2
1.3.6.1
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.4.1
1.2.4
1.2.3.1
1.2.3
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0rc6
1.0.0rc5
1.0.0rc4
1.0.0rc3
1.0.0-rc1
0.35.1
0.34
0.33.1
0.33
0.32.3
0.32.2
0.32
0.31.2
0.31.1
0.31
0.30
0.29
0.28.9
0.28.8
0.28.7
0.28.6
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
slapos/register/register.py
slapos/register/register.py
+8
-1
No files found.
slapos/register/register.py
View file @
7c75d7e7
...
...
@@ -94,6 +94,12 @@ class Parser(OptionParser):
help
=
"User password on Vifib master webservice"
,
default
=
None
,
type
=
str
),
Option
(
"-t"
,
"--create-tap"
,
help
=
"""Will trigger creation of one virtual "tap" interface per
\
Partition and attach it to primary interface. Requires primary interface to be
\
a bridge. defaults to false. Needed to host virtual machines."""
,
default
=
False
,
action
=
"store_true"
),
Option
(
"-n"
,
"--dry-run"
,
help
=
"Simulate the execution steps"
,
default
=
False
,
...
...
@@ -258,7 +264,8 @@ def slapconfig(config):
slapformatconfig
=
dict
(
interface_name
=
config
.
interface_name
,
ipv4_local_network
=
config
.
ipv4_local_network
,
partition_amount
=
config
.
partition_number
partition_amount
=
config
.
partition_number
,
create_tap
=
config
.
create_tap
)
for
key
in
slapformatconfig
:
configuration_example_parser
.
set
(
'slapformat'
,
key
,
slapformatconfig
[
key
])
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment