/[projects]/misc/xoa-installer/xoa-installer.sh
ViewVC logotype

Diff of /misc/xoa-installer/xoa-installer.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3179 by torben, Tue Dec 20 17:45:18 2016 UTC revision 3180 by torben, Thu Dec 22 12:43:51 2016 UTC
# Line 18  set -o pipefail Line 18  set -o pipefail
18    
19    
20    
   
21  function restartxo {  function restartxo {
22          killall -9 node          killall -9 node
23          rm -f /root/forever.log          rm -f /root/forever.log
# Line 30  if [ "$1" == "restart" ] ; then Line 29  if [ "$1" == "restart" ] ; then
29          exit          exit
30  fi  fi
31    
32    
33    phymem=$(free -m|awk '/^Mem:/{print $2}')
34    swapmem=$(free -m|awk '/^Swap:/{print $2}')
35    total=$(expr $phymem + $swapmem)
36    if [ $total -le 1536 ] ; then
37            echo not enough memory: $total
38            exit
39    fi
40    
41  if [ "$1" == "clean" ] ; then  if [ "$1" == "clean" ] ; then
42          echo cleaning xo-web          echo cleaning xo-web
43          rm -rf xo-web          rm -rf xo-web
# Line 113  fi Line 121  fi
121    
122  if [ ! -d "/usr/local/lib/node_modules/bcrypt" ] ; then  if [ ! -d "/usr/local/lib/node_modules/bcrypt" ] ; then
123          echo "installing bcrypt"          echo "installing bcrypt"
124          npm install -g bcrypt || exit          npm install -g --unsafe-perm bcrypt || exit
125  fi  fi
126    
127  if [ ! -d "xo-web" ] ; then  if [ ! -d "xo-web" ] ; then

Legend:
Removed from v.3179  
changed lines
  Added in v.3180

  ViewVC Help
Powered by ViewVC 1.1.20