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-stable
Commits
abc2c53e
Commit
abc2c53e
authored
Jun 15, 2004
by
David G Andersen
Browse files
Add the ability to force a disk reload on the widearea nodes
even if the disk is up to date.
parent
9e26905a
Changes
2
Show whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
abc2c53e
...
...
@@ -1971,6 +1971,7 @@ CREATE TABLE widearea_updates (
roottag
tinytext
NOT
NULL
,
update_requested
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
update_started
datetime
default
NULL
,
force
enum
(
'yes'
,
'no'
)
NOT
NULL
default
'no'
,
PRIMARY
KEY
(
IP
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
abc2c53e
...
...
@@ -1652,3 +1652,10 @@ last_net_act,last_cpu_act,last_ext_act);
contact tinytext,
phone tinytext,
room varchar(32) default NULL);
1.254: Add a "force" field in widearea_updates to specify that the
disk should be reloaded even though it's already registered as
being the current version. Good for cleaning up messes...
ALTER TABLE widearea_updates ADD
force enum('yes','no') NOT NULL default 'no' after update_started;
Write
Preview
Supports
Markdown
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