]> git.sesse.net Git - nms/blobdiff - include/config.pm
Begin moving passwords etc. into a common module.
[nms] / include / config.pm
diff --git a/include/config.pm b/include/config.pm
new file mode 100644 (file)
index 0000000..af5fa79
--- /dev/null
@@ -0,0 +1,14 @@
+#! /usr/bin/perl
+use strict;
+use warnings;
+use DBI;
+package nms::config;
+
+# Don't change this file for your local setup; use config.local.pm instead.
+
+our $db_name = "nms";
+our $db_host = "localhost";
+our $db_username = "nms";
+our $db_password = "nms";
+
+1;