X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fconfig.pm;fp=include%2Fconfig.pm;h=af5fa798b24d8e08aa50c0d6db34db22c8c1fa9f;hb=e86389d7be5cd9e780b3b7d04316133bbbaafacf;hp=0000000000000000000000000000000000000000;hpb=9a9f0ce3aeebc04ff7fd56989ace9a737b0879cf;p=nms diff --git a/include/config.pm b/include/config.pm new file mode 100644 index 0000000..af5fa79 --- /dev/null +++ b/include/config.pm @@ -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;