Send Netdot-devel mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://osl.uoregon.edu/mailman/listinfo/netdot-devel
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Netdot-devel digest..."
Today's Topics:
1. [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.4-123-g3e5450e ([email protected])
2. [SCM] Netdot branch master updated. netdot-1.0.4-123-g3e5450e
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Sun, 10 Nov 2013 10:34:24 -0800
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.4-123-g3e5450e
To: [email protected]
Message-ID: <[email protected]>
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Netdot".
The branch, netdot-1.0 has been updated
via 3e5450eb573cfc830d0a73d67479c317e5301072 (commit)
from c778e6f482efdb89945356f8de048a4062507267 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3e5450eb573cfc830d0a73d67479c317e5301072
Author: Carlos Vicente <[email protected]>
Date: Wed Nov 6 15:38:13 2013 -0500
Missing semi-colongs in update script
diff --git a/upgrade/updatedb b/upgrade/updatedb
index 6079b63..8f6c9ed 100644
--- a/upgrade/updatedb
+++ b/upgrade/updatedb
@@ -200,21 +200,21 @@ sub upg_104_105 {
push @statements, "ALTER TABLE ipblock ADD COLUMN asn bigint;";
push @statements, "ALTER TABLE ipblock ADD CONSTRAINT `fk_asn` FOREIGN
KEY (`asn`) ".
"REFERENCES `asn` (`id`);";
- push @statements, "CREATE INDEX asn ON ipblock (asn)";
+ push @statements, "CREATE INDEX asn ON ipblock (asn);";
push @statements, "INSERT INTO asn (number) SELECT DISTINCT bgplocalas
FROM device WHERE bgplocalas IS NOT NULL;";
push @statements, "ALTER TABLE device MODIFY bgplocalas bigint;";
push @statements, "ALTER TABLE device ADD CONSTRAINT `fk_bgplocalas`
FOREIGN KEY (`bgplocalas`) ".
"REFERENCES `asn` (`id`);";
- push @statements, "CREATE INDEX bgplocalas ON device (bgplocalas)";
+ push @statements, "CREATE INDEX bgplocalas ON device (bgplocalas);";
push @statements, "UPDATE device,asn SET device.bgplocalas=asn.id WHERE
device.bgplocalas=asn.number;";
push @statements, "ALTER TABLE bgppeering ADD COLUMN contactlist
bigint;";
push @statements, "ALTER TABLE bgppeering ADD CONSTRAINT
`fk_contactlist_bgppeering` FOREIGN KEY (`contactlist`) ".
"REFERENCES `contactlist` (`id`);";
- push @statements, "CREATE INDEX contactlist ON bgppeering
(contactlist)";
+ push @statements, "CREATE INDEX contactlist ON bgppeering
(contactlist);";
push @statements, "ALTER TABLE bgppeering ADD COLUMN last_changed
timestamp;";
push @statements, "ALTER TABLE bgppeering ADD COLUMN peer_group
varchar(255);";
push @statements, "ALTER TABLE bgppeering ADD COLUMN state
varchar(255);";
@@ -271,7 +271,7 @@ sub upg_104_105 {
push @statements, "ALTER TABLE bgppeering ADD COLUMN contactlist
bigint;";
push @statements, "ALTER TABLE \"bgppeering\" ADD CONSTRAINT
\"fk_contactlist\" FOREIGN KEY (\"contactlist\") ".
"REFERENCES \"contactlist\" (\"id\") DEFERRABLE;";
- push @statements, "ALTER TABLE bgppeering ADD COLUMN last_changed
timestamp";
+ push @statements, "ALTER TABLE bgppeering ADD COLUMN last_changed
timestamp;";
push @statements, "ALTER TABLE bgppeering ADD COLUMN peer_group
character varying(255);";
push @statements, "ALTER TABLE bgppeering ADD COLUMN state character
varying(255);";
push @statements, "ALTER TABLE bgppeering DROP COLUMN monitorstatus;";
-----------------------------------------------------------------------
Summary of changes:
upgrade/updatedb | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
Netdot
------------------------------
Message: 2
Date: Sun, 10 Nov 2013 10:35:05 -0800
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch master updated.
netdot-1.0.4-123-g3e5450e
To: [email protected]
Message-ID: <[email protected]>
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Netdot".
The branch, master has been updated
via 3e5450eb573cfc830d0a73d67479c317e5301072 (commit)
from c778e6f482efdb89945356f8de048a4062507267 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
upgrade/updatedb | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
Netdot
------------------------------
_______________________________________________
Netdot-devel mailing list
[email protected]
https://osl.uoregon.edu/mailman/listinfo/netdot-devel
End of Netdot-devel Digest, Vol 80, Issue 8
*******************************************