Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
7b61d846
Commit
7b61d846
authored
Sep 23, 2003
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/database-migrate.txt
sql/database-migrate.txt
+7
-0
No files found.
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
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