create_account iplog &&
default_install  &&

touch  /var/log/iplog  &&
 
# copy config file
if  [  !  -f  /etc/iplog.conf  ];  then
  echo  installing  example-iplog.conf  to  /etc/iplog.conf  &&
  /usr/bin/install -c -m 640  example-iplog.conf  /etc/iplog.conf
fi  &&

# Modify the conf file
sedit  "s:group nogroup:group iplog:"  /etc/iplog.conf  &&

# change owner and group
chown  iplog.iplog  /etc/iplog.conf  /var/log/iplog  &&

# to be sure ..
chmod  640  /etc/iplog.conf  /var/log/iplog
