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
7b61d846
Commit
7b61d846
authored
Sep 23, 2003
by
Leigh B. Stoller
Browse files
Add hashkey slot to hold the key to unlock tar/rpm files via the web
server.
parent
67d208de
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
7b61d846
...
...
@@ -279,6 +279,7 @@ CREATE TABLE experiments (
sync_server
varchar
(
32
)
default
NULL
,
cpu_usage
tinyint
(
4
)
unsigned
NOT
NULL
default
'0'
,
mem_usage
tinyint
(
4
)
unsigned
NOT
NULL
default
'0'
,
keyhash
varchar
(
64
)
default
NULL
,
idx
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
PRIMARY
KEY
(
eid
,
pid
),
KEY
idx
(
idx
),
...
...
sql/database-migrate.txt
View file @
7b61d846
...
...
@@ -970,3 +970,10 @@ last_net_act,last_cpu_act,last_ext_act);
alter table widearea_nodeinfo add column hostname varchar(255);
alter table widearea_nodeinfo add column site varchar(255);
1.186: Add hashkey slot to experiments table to use as a secret key to
pass from the nodes to the webserver, to download tar/rpm
files.
alter table experiments add keyhash varchar(64) default NULL \
after mem_usage;
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