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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
#!/bin/sh
#
#The MIT License
#
#Copyright (c) 2005-2006 Mike Tremaine <mgt /at/ stellarcore.net>
#
#Permission is hereby granted, free of charge, to any person obtaining
#a copy of this software and associated documentation files (the "Software"),
#to deal in the Software without restriction, including without limitation
#the rights to use, copy, modify, merge, publish, distribute, sublicense,
#and/or sell copies of the Software, and to permit persons to whom the
#Software is furnished to do so, subject to the following conditions:
#
#The above copyright notice and this permission notice shall be included
#in all copies or substantial portions of the Software.
#
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
#EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
#IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
#DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
#OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
#THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# __________________________________________________________________
#
# File: install_logwatch.sh
# Author: Mike Tremaine [mgt /at/ stellarcore.net]
# Maintainer: Mike Tremaine [mgt /at/ stellarcore.net]
# $Id$
#
# $Log: install_logwatch.sh,v $
# Revision 1.20 2008/05/12 22:53:28 mike
# removed -T flag no sure why it was there -mgt
#
# Revision 1.19 2008/05/08 23:15:55 mike
# Added install to logwatch.cron if no cron.daily dir. -mgt
#
# Revision 1.18 2008/05/08 22:47:41 mike
# Added BIGGER note for the new cron requirement -mgt
#
# Revision 1.17 2007/11/28 16:06:56 mike
# Prefix option code from Craig Ruff -mgt
#
# Revision 1.16 2007/11/28 15:50:43 mike
# Typod Craig Ruff sorry -mgt
#
# Revision 1.15 2007/11/28 15:49:47 mike
# Patch from Craig Ruff for MANDIR under Solaris -mgt
#
# Revision 1.14 2007/11/28 15:43:14 mike
# Patch from Craig Ruff for CONFIGDIR munge -mgt
#
# __________________________________________________________________
#
#Note: This script is provided for the non-RPM installs.
#It is preferred that logwatch be packaged by a distribution
#specifically for your installation. But since that is not always
#possible we have included this script.
#Add PATHS for various OS options
#Set PATH for solaris /usr/ucb/install
PATH=/usr/ucb:$PATH
#Set PATH for OpenBSD makewhatis /usr/libexec/makewhatis
PATH=$PATH:/usr/libexec
#Set PATH for IRIX makewhatis /usr/lib/makewhatis
PATH=$PATH:/usr/lib
export PATH
#Set OS and GLOBIGNORE
OS=`uname -s`
GLOBIGNORE=*CVS
#All these can be set via user input
#Defaults
BASEDIR="/usr/share/logwatch"
CONFIGDIR="/etc/logwatch"
TEMPDIR="/var/cache/logwatch"
PERLEXE="/usr/bin/perl"
MANDIR="/usr/share/man"
#Command line options section
ac_prev=
systemd=0
for ac_option
do
# If the previous option needs an argument, assign it.
if test -n "$ac_prev"; then
eval "$ac_prev=\$ac_option"
ac_prev=
continue
fi
ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
case $ac_option in
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
ac_prev=prefix ;;
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
prefix=$ac_optarg ;;
--systemd)
systemd=1;;
*)
echo "Unknown option '$ac_option'"
echo "Valid options are --prefix and --systemd."
echo " Option --prefix takes one argument: a path name, which will"
echo " be prepended to installation directory names"
echo " Option --systemd installs the systemd files logwatch.service"
echo " and logwatch.timer rather than the default 0logwatch"
echo " file in /etc/cron.daily/"
exit
;;
esac
done
if [ "x$prefix" != "x" ]; then
BASEDIR=$prefix
munge_base=1
CONFIGDIR=$BASEDIR/etc
munge_conf=1
TEMPDIR=$BASEDIR/tmp
munge_temp=1
MANDIR=$BASEDIR/man
fi
#Talk to user
printf "#################################\n"
printf "Preparing to install Logwatch\n"
printf "Enter the path to the Logwatch BaseDir [$BASEDIR] : "
read base
if [ "$base" = "" ]; then
printf "### Using $BASEDIR\n"
else
BASEDIR="$base"
#Set munge flag
munge_base=1
printf "### Using $BASEDIR [will modify logwatch.pl]\n"
fi
printf "Enter the path for the Logwatch ConfigDir [$CONFIGDIR] : "
read config
if [ "$config" = "" ]; then
printf "### Using $CONFIGDIR\n"
else
CONFIGDIR="$config"
munge_conf=1
printf "### Using $CONFIGDIR [will modify logwatch.pl]\n"
fi
printf "Enter the dir name to be used for temp files [$TEMPDIR] : "
read temp
if [ "$temp" = "" ]; then
printf "### Using $TEMPDIR\n"
else
TEMPDIR="$temp"
munge_temp=1
printf "### Using $TEMPDIR [will write to $CONFIGDIR/conf/logwatch.conf]\n"
fi
printf "Enter the location of perl [$PERLEXE] : "
read perlexe
if [ "$perlexe" = "" ]; then
printf "### Using $PERLEXE\n"
else
PERLEXE="$perlexe"
munge_perl=1
printf "### Using $PERLEXE [will modify logwatch.pl]\n"
fi
printf "Enter the dir name to used for the manpage [$MANDIR] : "
read mandir
if [ "$mandir" = "" ]; then
printf "### Using $MANDIR\n"
else
MANDIR="$mandir"
printf "### Using $MANDIR [Will try to run makewhatis]\n"
fi
echo "### Installing"
#OS Tests for known issues
if [ $OS = "Darwin" ]; then
munge_gzcat=1
fi
#Install is borked under IRIX
#BASE
install -m 0755 -d $BASEDIR
install -m 0755 -d $BASEDIR/dist.conf
install -m 0755 -d $BASEDIR/dist.conf/logfiles
install -m 0755 -d $BASEDIR/dist.conf/services
install -m 0755 -d $BASEDIR/default.conf
install -m 0755 -d $BASEDIR/default.conf/logfiles
install -m 0755 -d $BASEDIR/default.conf/services
install -m 0755 -d $BASEDIR/default.conf/html
install -m 0755 -d $BASEDIR/scripts
install -m 0755 -d $BASEDIR/scripts/logfiles
install -m 0755 -d $BASEDIR/scripts/services
install -m 0755 -d $BASEDIR/scripts/shared
install -m 0755 -d $BASEDIR/lib
install -m 0644 README $BASEDIR/README
install -m 0644 HOWTO-Customize-LogWatch $BASEDIR/HOWTO-Customize-LogWatch
install -m 0644 conf/*.conf $BASEDIR/default.conf
install -m 0644 conf/logfiles/* $BASEDIR/default.conf/logfiles
install -m 0644 conf/services/* $BASEDIR/default.conf/services
install -m 0644 conf/html/* $BASEDIR/default.conf/html
install -m 0755 scripts/logwatch.pl $BASEDIR/scripts/logwatch.pl
for i in scripts/logfiles/* ; do
if [ `ls $i | grep -v CVS | wc -l` -ne 0 ] ; then
install -m 0755 -d $BASEDIR/$i
install -m 0644 $i/* $BASEDIR/$i
fi
done
install -m 0644 scripts/shared/* $BASEDIR/scripts/shared
install -m 0644 scripts/services/* $BASEDIR/scripts/services
install -m 0644 lib/* $BASEDIR/lib
if [ $munge_base ]; then
perl -pi -e "s%/usr/share/logwatch%$BASEDIR%" $BASEDIR/scripts/logwatch.pl
fi
#CONFIG
install -m 0755 -d $CONFIGDIR
install -m 0755 -d $CONFIGDIR/scripts
install -m 0755 -d $CONFIGDIR/scripts/services
install -m 0755 -d $CONFIGDIR/conf
install -m 0755 -d $CONFIGDIR/conf/logfiles
install -m 0755 -d $CONFIGDIR/conf/services
install -m 0755 -d $CONFIGDIR/conf/html
if [ $munge_conf ]; then
perl -pi -e "s%/etc/logwatch%$CONFIGDIR%" $BASEDIR/scripts/logwatch.pl
fi
touch $CONFIGDIR/conf/logwatch.conf
touch $CONFIGDIR/conf/ignore.conf
touch $CONFIGDIR/conf/override.conf
#TEMP
#Using sanity check incase someone uses /tmp.
#The install would destroy the perms on /tmp
if [ ! -d $TEMPDIR ]; then
#Should this be 0700 -d $TEMPDIR ??
install -m 0755 -d $TEMPDIR
fi
#This can create duplicates need to grep first -mgt
if [ $munge_temp ]; then
echo "TmpDir = $TEMPDIR" >> $CONFIGDIR/conf/logwatch.conf
fi
#PERL
if [ $munge_perl ]; then
perl -pi -e "s%/usr/bin/perl%$PERLEXE%" $BASEDIR/scripts/logwatch.pl
fi
#Gzcat
if [ $munge_gzcat ]; then
echo "Pathtozcat = gzcat" >> $CONFIGDIR/conf/logwatch.conf
fi
#Search for makewhatis
for f in `echo $PATH | tr : ' '`; do
if [ -x "$f/makewhatis" ]; then
HAVE_MAKEWHATIS=1;
fi;
done
#Man page
if [ -d $MANDIR/man5 ] && [ -d $MANDIR/man8 ] && [ -d $MANDIR/man1 ] && [ $HAVE_MAKEWHATIS ]; then
install -m 0644 logwatch.8 $MANDIR/man8
install -m 0644 logwatch.conf.5 $MANDIR/man5
ln -sf $MANDIR/man5/logwatch.conf.5 $MANDIR/man5/ignore.conf.5
ln -sf $MANDIR/man5/logwatch.conf.5 $MANDIR/man5/override.conf.5
install -m 0644 postfix-logwatch.1 $MANDIR/man1
install -m 0644 amavis-logwatch.1 $MANDIR/man1
#OpenBSD no -s
if [ $OS = "OpenBSD" ]; then
makewhatis -u $MANDIR/man5 $MANDIR/man8 $MANDIR/man1
else
#FreeBSD and NetBSD no -s no -u
if [ $OS = "FreeBSD" ] || [ $OS = "NetBSD" ]; then
makewhatis $MANDIR/man5 $MANDIR/man8 $MANDIR/man1
else
#MacOS X aka Darwin no -u [even thought the manpage says]
if [ $OS = "Darwin" ]; then
makewhatis -o "1 5 8" $MANDIR
else
#Linux
makewhatis -u -s "1 5 8" $MANDIR
fi
fi
fi
else
if [ $OS = "SunOS" ]; then
#Go for the safe install rather than editing man.cf
mkdir -p $MANDIR/man1m > /dev/null 2>&1
install -m 0644 logwatch.8 $MANDIR/man1m
install -m 0644 logwatch.conf.5 $MANDIR/man1m
ln -sf $MANDIR/man1m/logwatch.conf.5 $MANDIR/man1m/ignore.conf.5
ln -sf $MANDIR/man1m/logwatch.conf.5 $MANDIR/man1m/override.conf.5
install -m 0644 postfix-logwatch.1 $MANDIR/man1
install -m 0644 amavis-logwatch.1 $MANDIR/man1
catman -w -M $MANDIR/man1m
else
install -m 0755 -d $MANDIR/man1
install -m 0644 postfix-logwatch.1 $MANDIR/man1
install -m 0644 amavis-logwatch.1 $MANDIR/man1
install -m 0755 -d $MANDIR/man5
install -m 0644 logwatch.conf.5 $MANDIR/man5
ln -sf $MANDIR/man5/logwatch.conf.5 $MANDIR/man5/ignore.conf.5
ln -sf $MANDIR/man5/logwatch.conf.5 $MANDIR/man5/override.conf.5
install -m 0755 -d $MANDIR/man8
install -m 0644 logwatch.8 $MANDIR/man8
printf "Installed manpages in $MANDIR/man1, $MANDIR/man5 and $MANDIR/man8.\n"
printf "Check your man.cf or man.conf to enable MANSECTS 1, 5 and 8\n"
fi
fi
#Symlink
ln -f -s $BASEDIR/scripts/logwatch.pl /usr/sbin/logwatch
printf "Created symlink for /usr/sbin/logwatch \n"
#Cron or Systemd timer
if [ $systemd -eq 1 ]; then
install -m 0644 scheduler/logwatch.service /lib/systemd/system/logwatch.service
install -m 0644 scheduler/logwatch.timer /lib/systemd/system/logwatch.timer
install -m 0644 scheduler/systemd.conf $BASEDIR/default.conf/systemd.conf
if [ ! -e /lib/systemd/system/multi-user.target.wants ]; then
install -m 0755 -d /lib/systemd/system/multi-user.target.wants
fi
ln -sf ../logwatch.timer /lib/systemd/system/multi-user.target.wants/logwatch.timer
printf "Created and enabled systemd logwatch.timer"
elif [ -d /etc/cron.daily ]; then
rm -f /etc/cron.daily/0logwatch
install -m 0755 scheduler/logwatch.cron /etc/cron.daily/0logwatch
printf "Created /etc/cron.daily/0logwatch \n"
else
install -m 0744 scheduler/logwatch.cron $CONFIGDIR/logwatch.cron
printf "################ README ####################.\n"
printf "You need to setup your cron job for logwatch.\n"
printf "A sample script is included see $CONFIGDIR/logwatch.cron. \n"
printf "2 0 * * * $CONFIGDIR/logwatch.cron >/dev/null 2>&1 \n"
fi
exit
# vi: shiftwidth=3 tabstop=3 et
|