default_install  &&
(

  mkdir  -p  ${INSTALL_ROOT}/etc/ppp/peers
  mkdir  -p  ${INSTALL_ROOT}/etc/ppp/chat

  touch ${INSTALL_ROOT}/etc/ppp/resolv.conf

  cp  $SCRIPT_DIRECTORY/pon   ${INSTALL_ROOT}/usr/bin
  cp  $SCRIPT_DIRECTORY/poff  ${INSTALL_ROOT}/usr/bin

  if  !  [  -f                     ${INSTALL_ROOT}/etc/ppp/options  ];  then
    cp  $SCRIPT_DIRECTORY/options  ${INSTALL_ROOT}/etc/ppp/options
  fi

  if  [  !  -e                       ${INSTALL_ROOT}/etc/ppp/peers/isp  ];  then
    cp  $SCRIPT_DIRECTORY/peers      ${INSTALL_ROOT}/etc/ppp/peers/isp
  fi

  if  [  !  -e                 ${INSTALL_ROOT}/etc/ppp/chat/isp  ];  then
    cp  $SCRIPT_DIRECTORY/isp  ${INSTALL_ROOT}/etc/ppp/chat/isp
  fi


  cat  $SCRIPT_DIRECTORY/message

  chown  root:ppp     ${INSTALL_ROOT}/usr/sbin/pppd
  chmod  4750         ${INSTALL_ROOT}/usr/sbin/pppd
  chown  -R root:ppp  ${INSTALL_ROOT}/etc/ppp
  touch ${INSTALL_ROOT}/etc/ppp/pap-secrets ${INSTALL_ROOT}/etc/ppp/chap-secrets &&
  chmod  600          ${INSTALL_ROOT}/etc/ppp/*-secrets

)
