We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cdaec commit 3c42a77Copy full SHA for 3c42a77
script/cachecloud-init.sh
@@ -13,7 +13,7 @@ set -o nounset
13
set -o errexit
14
15
readonly redisDir="/opt/cachecloud/redis"
16
-readonly redisTarGz="redis-3.0.6.tar.gz"
+readonly redisTarGz="redis-3.0.7.tar.gz"
17
18
19
# check if the user exists
script/deploy.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+cachecloud_dir=$1
4
+base_dir=/opt/cachecloud-web
5
+mkdir -p ${base_dir}
6
+mkdir -p ${base_dir}/logs
7
+cp ${cachecloud_dir}/cachecloud/script/start.sh ${base_dir}
8
+cp ${cachecloud_dir}/cachecloud/script/stop.sh ${base_dir}
9
+cp ${cachecloud_dir}/cachecloud/cachecloud-open-web/target/cachecloud-open-web-1.0-SNAPSHOT.war ${base_dir}
10
+cp ${cachecloud_dir}/cachecloud/cachecloud-open-web/src/main/resources/cachecloud-web.conf ${base_dir}/cachecloud-open-web-1.0-SNAPSHOT.conf
0 commit comments