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.6-52-g6ab8140 ([email protected])
2. [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.6-53-gabc05ca ([email protected])
----------------------------------------------------------------------
Message: 1
Date: Wed, 3 Sep 2014 07:58:25 -0700
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.6-52-g6ab8140
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 6ab81402729190993515602632ee2ff7d2bae1a4 (commit)
from 73acf42b64bb9112b347c92c2cf2035243d33ed0 (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 6ab81402729190993515602632ee2ff7d2bae1a4
Author: Carlos Vicente <[email protected]>
Date: Wed Sep 3 10:58:14 2014 -0400
Allow 'make installdb' to work even if DB_DBA_PASSWORD is not set in the
config file
diff --git a/lib/DBUTIL.pm b/lib/DBUTIL.pm
index 0f10059..1acc5ab 100644
--- a/lib/DBUTIL.pm
+++ b/lib/DBUTIL.pm
@@ -394,8 +394,10 @@ sub initacls_mysql {
push @acl, "GRANT SELECT,INSERT,CREATE,INDEX,UPDATE,DELETE ON
$CONFIG{DB_DATABASE}.* TO $CONFIG{DB_NETDOT_USER}\@$CONFIG{DB_HOST} IDENTIFIED
BY '$CONFIG{DB_NETDOT_PASS}';";
&db_query(\@acl, 'mysql');
- system ("$CONFIG{BINDIR}/mysqladmin --host=$CONFIG{DB_HOST}
--port=$CONFIG{DB_PORT} --user=$CONFIG{DB_DBA} -p$CONFIG{DB_DBA_PASSWORD}
reload");
-
+ my $cmd = "$CONFIG{BINDIR}/mysqladmin --host=$CONFIG{DB_HOST}
--port=$CONFIG{DB_PORT} --user=$CONFIG{DB_DBA}";
+ my $cmd .= " -p$CONFIG{DB_DBA_PASSWORD}" if $CONFIG{DB_DBA_PASSWORD};
+ my $cmd .= ' reload';
+ system ($cmd);
}
-----------------------------------------------------------------------
Summary of changes:
lib/DBUTIL.pm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
Netdot
------------------------------
Message: 2
Date: Wed, 3 Sep 2014 08:12:10 -0700
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.6-53-gabc05ca
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 abc05ca93c3b226c059fcb2c1db55a0dd33927da (commit)
from 6ab81402729190993515602632ee2ff7d2bae1a4 (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 abc05ca93c3b226c059fcb2c1db55a0dd33927da
Author: Carlos Vicente <[email protected]>
Date: Wed Sep 3 11:12:05 2014 -0400
Correction
diff --git a/lib/DBUTIL.pm b/lib/DBUTIL.pm
index 1acc5ab..af50ccf 100644
--- a/lib/DBUTIL.pm
+++ b/lib/DBUTIL.pm
@@ -395,8 +395,8 @@ sub initacls_mysql {
&db_query(\@acl, 'mysql');
my $cmd = "$CONFIG{BINDIR}/mysqladmin --host=$CONFIG{DB_HOST}
--port=$CONFIG{DB_PORT} --user=$CONFIG{DB_DBA}";
- my $cmd .= " -p$CONFIG{DB_DBA_PASSWORD}" if $CONFIG{DB_DBA_PASSWORD};
- my $cmd .= ' reload';
+ $cmd .= " -p$CONFIG{DB_DBA_PASSWORD}" if $CONFIG{DB_DBA_PASSWORD};
+ $cmd .= ' reload';
system ($cmd);
}
-----------------------------------------------------------------------
Summary of changes:
lib/DBUTIL.pm | 4 ++--
1 file changed, 2 insertions(+), 2 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 90, Issue 1
*******************************************