~ubuntu-branches/ubuntu/karmic/cgiirc/karmic-updates

« back to all changes in this revision

Viewing changes to interfaces/nonjs.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2006-09-30 00:15:44 UTC
  • mfrom: (2.1.2 edgy)
  • Revision ID: james.westby@ubuntu.com-20060930001544-t2jjhvc00rnikdw0
Tags: 0.5.9-2
* Fix postinst by moving chgrp and chmod to build-time
* Cleanup debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
$standardheader = <<EOF;
6
6
<!-- This is part of CGI:IRC 0.5
7
7
  == http://cgiirc.sourceforge.net/
8
 
  == Copyright (C) 2000-2002 David Leadbeater <cgiirc\@dgl.cx>
 
8
  == Copyright (C) 2000-2006 David Leadbeater <cgiirc\@dgl.cx>
9
9
  == Released under the GNU GPL
10
10
  -->
11
11
EOF
12
12
 
 
13
# nonjs always uses first server..
 
14
if(defined $::config->{balance_servers}) {
 
15
  my @s = split /,\s*/, $::config->{balance_servers};
 
16
  $::config->{script_form} = "$s[0]/$::config->{script_form}";
 
17
  $::config->{script_nph} = "$s[0]/$::config->{script_nph}";
 
18
}
 
19
 
13
20
use default;
14
21
@ISA = qw/default/;
15
22