Commit 02b90ca7df5ed3ede5f29a1cd11f320c598215f0

  • Tree SHA1: 8b6e6ce
  • Parent SHA1: ddc6010 (Add some known symbols to the list of exported names. Somes may be missing though, as I haven't reviewed all the plugins.)
  • raw diff | raw patch
Option -R does not exist anymore for ngc. Use -c instead to reload initng.
build.sh
(3 / 3)
  
4343if ask "Do you want to reload initng now"; then
4444 echo "**** Reloading initng ****"
4545 if [ ${UID} -eq 0 ] ; then
46 ngc -R
46 ngc -c
4747 else
4848 echo "root privileges required."
49 su -c "/sbin/ngc -R"
49 su -c "/sbin/ngc -c"
5050 fi
5151else
5252 echo "**** Skipping reloading of initng ****"
53 echo "You can reload it calling 'ngc -R'."
53 echo "You can reload it calling 'ngc -c'."
5454fi
5555
5656cd ..