summaryrefslogtreecommitdiffstats
path: root/network/lighttpd/doinst.sh
blob: f606c2f077a789cef030ea969b931f81ee4e1773 (plain)
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
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  # If there's no config file by that name, mv it over:
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    # toss the redundant copy
    rm $NEW
  fi
  # Otherwise, we leave the .new copy for the admin to consider...
}

# Keep same perms on rc.lighttpd.new:
if [ -e etc/rc.d/rc.lighttpd ]; then
  cp -a etc/rc.d/rc.lighttpd etc/rc.d/rc.lighttpd.new.incoming
  cat etc/rc.d/rc.lighttpd.new > etc/rc.d/rc.lighttpd.new.incoming
  mv etc/rc.d/rc.lighttpd.new.incoming etc/rc.d/rc.lighttpd.new
fi

config etc/lighttpd/lighttpd.conf.new
config etc/logrotate.d/lighttpd.new
config etc/rc.d/rc.lighttpd.new

# Create dummy logfiles, but throw them away if logfiles are already here:
for i in access error ; do 
  if [ -e var/log/lighttpd/${i}.log ]; then
    rm -f var/log/lighttpd/${i}.log.new
  else 
    mv var/log/lighttpd/${i}.log.new var/log/lighttpd/${i}.log
  fi
done