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
Boxiang Sun
slapos.core
Commits
f5b7a523
Commit
f5b7a523
authored
Jan 26, 2012
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new option --no-bridge to run slapformat on real interface like eth0
parent
c7083252
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
slapos/format.py
slapos/format.py
+10
-4
No files found.
slapos/format.py
View file @
f5b7a523
...
@@ -299,7 +299,7 @@ class Computer:
...
@@ -299,7 +299,7 @@ class Computer:
return
computer
return
computer
def
construct
(
self
,
alter_user
=
True
,
alter_network
=
True
):
def
construct
(
self
,
alter_user
=
True
,
alter_network
=
True
,
create_tap
=
True
):
"""
"""
Construct the computer object as it is.
Construct the computer object as it is.
"""
"""
...
@@ -336,7 +336,7 @@ class Computer:
...
@@ -336,7 +336,7 @@ class Computer:
else
:
else
:
owner
=
User
(
'root'
)
owner
=
User
(
'root'
)
if
alter_network
:
if
alter_network
and
create_tap
:
# In case it has to be attached to the TAP network device, only one
# In case it has to be attached to the TAP network device, only one
# is necessary for the interface to assert carrier
# is necessary for the interface to assert carrier
if
self
.
interface
.
attach_to_tap
and
partition_index
==
0
:
if
self
.
interface
.
attach_to_tap
and
partition_index
==
0
:
...
@@ -376,7 +376,7 @@ class Computer:
...
@@ -376,7 +376,7 @@ class Computer:
else
:
else
:
raise
ValueError
(
'Address %r is incorrect'
%
address
[
'addr'
])
raise
ValueError
(
'Address %r is incorrect'
%
address
[
'addr'
])
finally
:
finally
:
if
alter_network
and
self
.
interface
.
attach_to_tap
:
if
alter_network
and
create_tap
and
self
.
interface
.
attach_to_tap
:
try
:
try
:
self
.
partition_list
[
0
].
tap
.
detach
()
self
.
partition_list
[
0
].
tap
.
detach
()
except
IndexError
:
except
IndexError
:
...
@@ -833,6 +833,10 @@ class Parser(OptionParser):
...
@@ -833,6 +833,10 @@ class Parser(OptionParser):
help
=
"Don't actually do anything."
,
help
=
"Don't actually do anything."
,
default
=
False
,
default
=
False
,
action
=
"store_true"
),
action
=
"store_true"
),
Option
(
"-b"
,
"--no_bridge"
,
help
=
"Don't use bridge but use real interface like eth0."
,
default
=
False
,
action
=
"store_true"
),
Option
(
"-v"
,
"--verbose"
,
Option
(
"-v"
,
"--verbose"
,
default
=
False
,
default
=
False
,
action
=
"store_true"
,
action
=
"store_true"
,
...
@@ -974,7 +978,7 @@ def run(config):
...
@@ -974,7 +978,7 @@ def run(config):
computer_definition
.
write
(
open
(
filepath
,
'w'
))
computer_definition
.
write
(
open
(
filepath
,
'w'
))
config
.
logger
.
info
(
'Stored computer definition in %r'
%
filepath
)
config
.
logger
.
info
(
'Stored computer definition in %r'
%
filepath
)
computer
.
construct
(
alter_user
=
config
.
alter_user
,
computer
.
construct
(
alter_user
=
config
.
alter_user
,
alter_network
=
config
.
alter_network
)
alter_network
=
config
.
alter_network
,
create_tap
=
not
config
.
no_bridge
)
# Dumping and sending to the erp5 the current configuration
# Dumping and sending to the erp5 the current configuration
if
not
config
.
dry_run
:
if
not
config
.
dry_run
:
...
@@ -1092,6 +1096,8 @@ class Config:
...
@@ -1092,6 +1096,8 @@ class Config:
self
.
logger
.
debug
(
"Verbose mode enabled."
)
self
.
logger
.
debug
(
"Verbose mode enabled."
)
if
self
.
dry_run
:
if
self
.
dry_run
:
self
.
logger
.
info
(
"Dry-run mode enabled."
)
self
.
logger
.
info
(
"Dry-run mode enabled."
)
if
self
.
no_bridge
:
self
.
logger
.
info
(
"No-bridge mode enabled."
)
# Calculate path once
# Calculate path once
self
.
computer_xml
=
os
.
path
.
abspath
(
self
.
computer_xml
)
self
.
computer_xml
=
os
.
path
.
abspath
(
self
.
computer_xml
)
...
...
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