]> mj.ucw.cz Git - pciids.git/blobdiff - scripts/initdb.pl
Merge branch 'master' of /home/vorner/pciids
[pciids.git] / scripts / initdb.pl
index e80f71922aaa9657b4985a2c91e912a306be527d..5194321721e1092a89259e46ff4a85bf76adbb1c 100755 (executable)
@@ -1,5 +1,23 @@
 #!/usr/bin/perl
 
+#      PciIds web database
+#      Copyright (C) 2008 Michal Vaner (vorner@ucw.cz)
+#
+#      This program is free software; you can redistribute it and/or modify
+#      it under the terms of the GNU General Public License as published by
+#      he Free Software Foundation; either version 2 of the License, or
+#      (at your option) any later version.
+#
+#      This program is distributed in the hope that it will be useful,
+#      but WITHOUT ANY WARRANTY; without even the implied warranty of
+#      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#
+#      GNU General Public License for more details.
+#
+#      You should have received a copy of the GNU General Public License
+#      along with this program; if not, write to the Free Software
+#      Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
 use strict;
 use warnings;
 BEGIN {
@@ -7,6 +25,7 @@ BEGIN {
 }
 use PciIds::Config;
 use PciIds::Db;
+use PciIds::Startup;
 use DBI;
 
 my @lines;
@@ -28,7 +47,7 @@ sub createTable( $ ) {
 }
 
 my $dbh = connectDb();
-open TABLES, "tables" or die "Could not open table definitions\n";
+open TABLES, $directory."cf/tables" or die "Could not open table definitions\n";
 foreach( <TABLES> ) {
        chomp;
        if( /^\s*$/ ) {