/usr/lib/news/innshellvars.pl is in inn2 2.6.1-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | #
# This package is only kept for compatibility reasons with old softwares.
# Please use the real INN::Config Perl module instead.
#
# Author: James Brister <brister@vix.com> -- berkeley-unix --
# Start Date: Sat, 24 Aug 1996 22:08:19 +0200
# Project: INN
# File: innshellvars.pl
# RCSId: $Id: innshellvars.pl.in 9567 2013-11-17 20:24:35Z iulius $
# Description: Set up any and all variables that an INN perl script
# might need. Also sets umask.
#
package inn ;
$ENV{'LC_CTYPE'} = "C";
$prefix = '/usr/lib/news';
$exec_prefix = "${prefix}";
eval `${exec_prefix}/bin/innconfval -p`;
$newshome = $pathnews;
$spooldir = $pathspool;
$most_logs = $pathlog;
$ENV{'NEWSHOME'} = $pathnews;
$ENV{'SPOOLDIR'} = $spooldir;
$ENV{'MOST_LOGS'} = $most_logs;
$newsbin = $pathbin;
$newsetc = $pathetc;
$newslib = "/usr/lib/news";
$innddir = $pathrun;
$locks = $pathrun;
$ENV{'NEWSBIN'} = $newsbin;
$ENV{'NEWSETC'} = $newsetc;
$ENV{'NEWSLIB'} = $newslib;
$ENV{'INNDDIR'} = $innddir;
$ENV{'LOCKS'} = $locks;
$errlog = "${most_logs}/errlog";
$log = "${most_logs}/news";
$archivedir = $patharchive;
$spool = $patharticles;
$batch = $pathoutgoing;
$incoming = $pathincoming;
$overviewdir = $pathoverview;
$spoolnews = $pathincoming;
$badnews = "$pathincoming/bad";
$active = "${pathdb}/active" ;
$activetimes = "${pathdb}/active.times" ;
$ctlfile = "${newsetc}/control.ctl" ;
$ctlwatch = "${newsetc}/innwatch.ctl" ;
$history = "${pathdb}/history" ;
$newactive = "${pathdb}/active.tmp" ;
$newsfeeds = "${newsetc}/newsfeeds" ;
$newsgroups = "${pathdb}/newsgroups" ;
$oldactive = "${pathdb}/active.old" ;
$path_motd_innd = "${newsetc}/motd.innd" ;
$path_motd_nnrpd = "${newsetc}/motd.nnrpd" ;
$path_motd = "${path_motd_nnrpd}" ;
$expirectl = "${newsetc}/expire.ctl" ;
$localgroups = "$newsetc/localgroups" ;
$controlprogs = $pathcontrol;
$innconfval = "${newsbin}/innconfval" ;
$innd = "${newsbin}/innd" ;
$innwatch = "${newsbin}/innwatch" ;
$inews = "${newsbin}/inews" ;
$rnews = "${newsbin}/rnews" ;
$perl_startup_innd = "$pathfilter/startup_innd.pl" ;
$perl_filter_innd = "$pathfilter/filter_innd.pl" ;
$perl_filter_nnrpd = "$pathfilter/filter_nnrpd.pl" ;
$python_filter_innd = "$pathfilter/filter_innd.py" ;
$path_python_inn_module = "$pathfilter/INN.py" ;
$path_tcl_startup = "$pathfilter/startup.tcl" ;
$path_tcl_filter = "$pathfilter/filter.tcl" ;
$daily = "${locks}/LOCK.news.daily" ;
$newscontrol = "${innddir}/control" ;
$nntpconnect = "${innddir}/nntpin" ;
$serverpid = "${innddir}/innd.pid" ;
$innwstatus = "${innddir}/innwatch.status" ;
$watchpid = "${innddir}/innwatch.pid" ;
$awk = 'awk' ;
$sed = 'sed' ;
$inndf = "${newsbin}/inndf" ;
$egrep = 'egrep' ;
$perl = '/usr/bin/perl' ;
$gpgv = '/usr/bin/gpgv' ;
$pgp = '' ;
$sort = 'sort' ;
$getftp = "wget" ;
$uustat = 'uustat' ;
$uux = 'uux' ;
$bzip2 = '/bin/bzip2' ;
$compress = 'compress' ;
$gzip = '/bin/gzip' ;
$uncompress = '/bin/gzip -d' ;
$log_compress = '/bin/gzip' ;
$z = '.gz' ;
if ($ovmethod && $ovmethod eq "ovdb") {
$ENV{'DB_HOME'} = $pathoverview;
}
($tempsock = "${innddir}/ctlinndXXXXXX") =~ s!.*/(.*)XXXXXX$!$1*! ;
($tempsockdir = "${innddir}/ctlinndXXXXXX") =~ s!/[^/]*$!! ;
$newsmaster = 'usenet' ;
$newsuser = ${runasuser} ;
$newsgroup = ${runasgroup} ;
$filemode = 0664;
$inewsmode = 0550;
$rnewsmode = 07550;
$do_dbz_tagged_hash = 'DONT';
$tmpdir = ${pathtmp};
$ENV{'TMPDIR'} = ${pathtmp};
$spooltemp = ${pathtmp};
$newslbin = "${newshome}/local";
$ENV{'NEWSLBIN'} = ${newslbin};
umask 02;
$umask = 02;
$syslog_facility = lc("LOG_NEWS");
$syslog_facility =~ s/log_//;
$path = $ENV{'PATH'} || '';
$path = "${newslbin}:${newsbin}:${path}:/bin:/usr/bin";
$ENV{'PATH'} = $path;
$home = ${pathnews};
## Load another script that can override or add variables.
if (-x "${pathetc}/innshellvars.pl.local") {
do "${pathetc}/innshellvars.pl.local";
}
1 ;
|