Changeset 216 for trunk/dns-rpc.cgi


Ignore:
Timestamp:
01/04/12 23:25:56 (12 years ago)
Author:
Kris Deugau
Message:

/trunk

Found some not-so-little things missing for a tarball

  • munging of @INC via "use lib" needs to be pointed to the right path on install
  • session dir should be configurable (eg, to put it in /var/lib/dnsdb when packaged scripts + templates all go in /usr/share/dnsdb)
  • Finally remove lingering unused viadns.css
  • Remember to install template files on 'make install'
  • Get a good start on filling out INSTALL halfway properly by copy-pasting the IPDB version
  • Add all-commented example config file to be installed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dns-rpc.cgi

    r200 r216  
    1 #!/usr/bin/perl
     1#!/usr/bin/perl -w -T
    22# $Id$
    33# XMLRPC interface to manipulate most DNS DB entities
     
    66use strict;
    77use warnings;
     8
     9# don't remove!  required for GNU/FHS-ish install from tarball
     10use lib '.';    ##uselib##
     11
    812use DNSDB;      # note we're not importing subs;  this lets us (ab)use the same sub names here for convenience
    913use Data::Dumper;
Note: See TracChangeset for help on using the changeset viewer.