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
ISC Open Source Projects
Kea
Commits
e0216b1d
Commit
e0216b1d
authored
Jul 06, 2018
by
Tomek Mrugalski
🛰
Browse files
[5584] Minor changes after review.
parent
83e266c3
Changes
7
Hide whitespace changes
Inline
Side-by-side
doc/guide/hooks.xml
View file @
e0216b1d
...
...
@@ -475,8 +475,7 @@ $ <userinput>ls -l /usr/local/lib/hooks/*.so</userinput>
errors, like adding a lease with subnet-id that does not exist in
the configuration or configuring a lease to use an address that is
outside of the subnet to which it is supposed to belong.
It provides a not programmatic way to manage user contexts
associated to leases.
It provides a way to manage user contexts associated with leases.
</entry>
</row>
...
...
src/share/database/scripts/cql/dhcpdb_create.cql
View file @
e0216b1d
...
...
@@ -281,7 +281,7 @@ ALTER TABLE lease4 ADD user_context text;
ALTER TABLE lease6 ADD user_context text;
-- -----------------------------------------------------
-- Table `logs`
-- Table `logs`
(logs table is used by forensic logging hook library)
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS logs (
timeuuid timeuuid, -- creation timeuuid, use dateOf() to get timestamp
...
...
src/share/database/scripts/cql/upgrade_2.0_to_3.0.sh.in
View file @
e0216b1d
...
...
@@ -24,7 +24,7 @@ ALTER TABLE lease4 ADD user_context text;
ALTER TABLE lease6 ADD user_context text;
-- -----------------------------------------------------
-- Table
\`
logs
\`
-- Table logs
(it is used by forensic logging hook library)
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS logs (
timeuuid timeuuid, -- creation timeuuid, use dateOf() to get timestamp
...
...
src/share/database/scripts/mysql/dhcpdb_create.mysql
View file @
e0216b1d
...
...
@@ -752,7 +752,7 @@ ORDER BY l.address;
END $$
DELIMITER ;
# Create logs table
# Create logs table
(logs table is used by forensic logging hook library)
CREATE TABLE logs (
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP, # creation timestamp
address VARCHAR(43) NULL, # address or prefix
...
...
src/share/database/scripts/mysql/upgrade_6.0_to_6.1.sh.in
View file @
e0216b1d
...
...
@@ -92,7 +92,7 @@ ORDER BY l.address;
END
$$
DELIMITER ;
# Create logs table
# Create logs table
(logs table is used by forensic logging hook library)
CREATE TABLE logs (
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP, # creation timestamp
address VARCHAR(43) NULL, # address or prefix
...
...
src/share/database/scripts/pgsql/dhcpdb_create.pgsql
View file @
e0216b1d
...
...
@@ -854,7 +854,7 @@ CREATE FUNCTION lease6DumpData() RETURNS
$$ LANGUAGE SQL;
--
-- Create logs table
-- Create logs table
(logs table is used by forensic logging hook library)
CREATE TABLE logs (
timestamp TIMESTAMP WITH TIME ZONE
DEFAULT CURRENT_TIMESTAMP, -- creation timestamp
...
...
src/share/database/scripts/pgsql/upgrade_4.0_to_4.1.sh.in
View file @
e0216b1d
...
...
@@ -121,7 +121,7 @@ CREATE FUNCTION lease6DumpData() RETURNS
\$\$
LANGUAGE SQL;
--
-- Create logs table
-- Create logs table
(logs table is used by forensic logging hook library)
CREATE TABLE logs (
timestamp TIMESTAMP WITH TIME ZONE
DEFAULT CURRENT_TIMESTAMP, -- creation timestamp
...
...
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