/[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 2985 by torben, Sat Mar 19 12:29:57 2016 UTC revision 2986 by torben, Sat Mar 19 12:43:25 2016 UTC
# Line 57  fi Line 57  fi
57    
58  if [ ! -f "/usr/include/libpng12/png.h" ] ; then  if [ ! -f "/usr/include/libpng12/png.h" ] ; then
59          echo "installing libpng"          echo "installing libpng"
60          apt-get install libpng12-dev          apt-get install libpng12-dev || exit
61  fi  fi
62    
63  if [ ! -x "/usr/bin/redis-server" ] ; then  if [ ! -x "/usr/bin/redis-server" ] ; then
# Line 67  fi Line 67  fi
67    
68  if [ ! -x "/usr/bin/git" ] ; then  if [ ! -x "/usr/bin/git" ] ; then
69          echo "installing git"          echo "installing git"
70          apt-get install git          apt-get install git || exit
71  fi  fi
72                    
73    
# Line 84  fi Line 84  fi
84    
85  if [ ! -x "/usr/local/bin/gulp" ] ; then  if [ ! -x "/usr/local/bin/gulp" ] ; then
86          echo "installing gulp"          echo "installing gulp"
87          npm install -g gulp          npm install -g gulp || exit
88  fi  fi
89    
90  if [ ! -x "/usr/local/bin/forever" ] ; then  if [ ! -x "/usr/local/bin/forever" ] ; then
91          echo "installing forever"          echo "installing forever"
92          npm install -g forever          npm install -g forever || exit
93  fi  fi
94    
95  if [ ! -x "/usr/local/bin/node-gyp" ] ; then  if [ ! -x "/usr/local/bin/node-gyp" ] ; then
96          echo "installing node-gyp"          echo "installing node-gyp"
97          npm install -g node-gyp          npm install -g node-gyp || exit
98  fi  fi
99    
100  if [ ! -d "/usr/local/lib/node_modules/bcrypt" ] ; then  if [ ! -d "/usr/local/lib/node_modules/bcrypt" ] ; then
101          echo "installing bcrypt"          echo "installing bcrypt"
102          npm install -g bcrypt          npm install -g bcrypt || exit
103  fi  fi
104    
105  if [ ! -d "xo-web" ] ; then  if [ ! -d "xo-web" ] ; then

Legend:
Removed from v.2985  
changed lines
  Added in v.2986

  ViewVC Help
Powered by ViewVC 1.1.20