. lib/lsb/init-functions
GID=34
GROUP="mail"
if ! (getent group $GROUP > /dev/null); then
        log_info_msg "${INFO}Creating $GROUP group${NORMAL}\n"
        groupadd -g $GID $GROUP
fi

if [ -f etc/pam.d/system-session ];then
  rm etc/pam.d/system-session
  log_info_msg "${INFO} /etc/pam.d/system-session file will be replaced ${NORMAL}\n"
fi
