Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
f0bc8183
Commit
f0bc8183
authored
Sep 09, 2013
by
Leigh B Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oops, lets flag nodes as well with nonfsmounts.
parent
2597cbc0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/updates/4/367
sql/updates/4/367
+4
-0
No files found.
sql/database-create.sql
View file @
f0bc8183
...
...
@@ -2869,6 +2869,7 @@ CREATE TABLE `nodes` (
`reserved_pid`
varchar
(
48
)
default
NULL
,
`uuid`
varchar
(
40
)
NOT
NULL
default
''
,
`reserved_memory`
int
(
10
)
unsigned
default
'0'
,
`nonfsmounts`
tinyint
(
1
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
`node_id`
),
KEY
`phys_nodeid`
(
`phys_nodeid`
),
KEY
`node_id`
(
`node_id`
,
`phys_nodeid`
),
...
...
sql/updates/4/367
View file @
f0bc8183
...
...
@@ -14,6 +14,10 @@ sub DoUpdate($$$)
DBQueryFatal("alter table experiments add ".
" `nonfsmounts` tinyint(1) NOT NULL default '0'");
}
if (!DBSlotExists("nodes", "nonfsmounts")) {
DBQueryFatal("alter table nodes add ".
" `nonfsmounts` tinyint(1) NOT NULL default '0'");
}
return 0;
}
...
...
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