X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Finitdb.pl;h=5194321721e1092a89259e46ff4a85bf76adbb1c;hb=a800eab36c98d0b7c05a92406e44183c5d1ef3fe;hp=e80f71922aaa9657b4985a2c91e912a306be527d;hpb=034ddef0b0045aa2c942e386570bc4770d7188b9;p=pciids.git diff --git a/scripts/initdb.pl b/scripts/initdb.pl index e80f719..5194321 100755 --- a/scripts/initdb.pl +++ b/scripts/initdb.pl @@ -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( ) { chomp; if( /^\s*$/ ) {