File:  [LON-CAPA] / loncom / html / adm / geogebra / commands
Revision 1.3: download - view: text, annotated - select for diffs
Sat Apr 4 23:07:33 2015 UTC (9 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Geogebra for HTML5
  - Replace original 110MB geogebra_html5 tarball (4.2 test) with a smaller
    tarball for 4.2 (21 MB).

currversion=0.0
webdir='/home/httpd/html/adm/geogebra/web'
if [ -e $webdir ]
then
    if [ -e "$webdir/VERSION" ]
    then
        currversion=`cat $webdir/VERSION`
    fi
fi
newversion=`cat VERSION`
comparison=`echo "$newversion > $currversion" | bc`
if [ $comparison -gt 0 ]
then
  if [ -e $webdir ] 
  then
      rm -rf $webdir
      if [ -e "$webdir/geogebra_html5.tar.gz" ]
      then
          rm "$webdir/geogebra_html5.tar.gz"
      fi
  fi
  tar -xzf geogebraweb_4.2.tar.gz
  mv web $webdir
  cp VERSION $webdir/VERSION
  chown -R www:www $webdir
  find $webdir -type d -exec chmod u=rwx,go-rwx {} \;
  if [ -e "$webdir/geogebraweb_4.2.tar.gz" ]
  then
      rm "$webdir/geogebraweb_4.2.tar.gz"
  fi
  sleep 1
fi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>