Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
adeba012
Commit
adeba012
authored
Feb 05, 2004
by
Robert Ricci
Browse files
Add 'use_ipassign' and 'ipassign_args' to the experiments table,
for Jon's ipassign stuff.
parent
c713fce2
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
adeba012
...
...
@@ -287,6 +287,8 @@ CREATE TABLE experiments (
allowfixnode
tinyint
(
4
)
NOT
NULL
default
'1'
,
jail_osname
varchar
(
20
)
default
NULL
,
delay_osname
varchar
(
20
)
default
NULL
,
use_ipassign
tinyint
(
1
)
NOT
NULL
default
'0'
,
ipassign_args
varchar
(
255
)
default
NULL
,
PRIMARY
KEY
(
eid
,
pid
),
KEY
idx
(
idx
),
KEY
batchmode
(
batchmode
)
...
...
sql/database-migrate.txt
View file @
adeba012
...
...
@@ -1297,3 +1297,12 @@ last_net_act,last_cpu_act,last_ext_act);
alter table os_info change osfeatures osfeatures \
set('ping','ssh','ipod','isup','veths','mlinks') default NULL;
1.126: Add a use_ipassign column to the experiments table, to enable and
disable the use of Jon's ipassign program. Also add a column to
specify arguments for it.
alter table experiments add column use_ipassign tinyint(1) \
not null default 0;
alter table experiments add column ipassign_args varchar(255) \
default NULL;
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