Skip to content
GitLab
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
e6bd0480
Commit
e6bd0480
authored
Sep 07, 2017
by
David Johnson
Browse files
Add a docker-host osfeature.
parent
9a4eb5dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
e6bd0480
...
...
@@ -3811,7 +3811,7 @@ CREATE TABLE `os_info_versions` (
`path`
tinytext
,
`magic`
tinytext
,
`machinetype`
varchar
(
30
)
NOT
NULL
default
''
,
`osfeatures`
set
(
'ping'
,
'ssh'
,
'ipod'
,
'isup'
,
'veths'
,
'veth-ne'
,
'veth-en'
,
'mlinks'
,
'linktest'
,
'linkdelays'
,
'vlans'
,
'suboses'
,
'ontrustedboot'
,
'no-usb-boot'
,
'egre'
,
'loc-bstore'
,
'rem-bstore'
,
'openvz-host'
,
'xen-host'
)
default
NULL
,
`osfeatures`
set
(
'ping'
,
'ssh'
,
'ipod'
,
'isup'
,
'veths'
,
'veth-ne'
,
'veth-en'
,
'mlinks'
,
'linktest'
,
'linkdelays'
,
'vlans'
,
'suboses'
,
'ontrustedboot'
,
'no-usb-boot'
,
'egre'
,
'loc-bstore'
,
'rem-bstore'
,
'openvz-host'
,
'xen-host'
,
'docker-host'
)
default
NULL
,
`ezid`
tinyint
(
4
)
NOT
NULL
default
'0'
,
`shared`
tinyint
(
4
)
NOT
NULL
default
'0'
,
`mustclean`
tinyint
(
4
)
NOT
NULL
default
'1'
,
...
...
sql/updates/4/601
0 → 100644
View file @
e6bd0480
#
# Add docker-host osfeature.
#
use strict;
use libdb;
sub DoUpdate($$$)
{
my ($dbhandle, $dbname, $version) = @_;
DBQueryFatal("alter table os_info_versions modify ".
" `osfeatures` set('ping','ssh','ipod','isup','veths','veth-ne','veth-en','mlinks','linktest','linkdelays','vlans','suboses','ontrustedboot','no-usb-boot','egre','loc-bstore','rem-bstore','openvz-host','xen-host','docker-host') default NULL");
return 0;
}
1;
# Local Variables:
# mode:perl
# End:
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment