blob: 1d6a60f485adf23fbd010cc313ba5cf20ed20e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/bin/bash
source /bin/sx-lib.sh
function display_container_memcache_header {
echo "+====================================================="
echo "| Container : $HOSTNAME"
echo "| OS : $(</etc/redhat-release)"
echo "| Engine : $(memcached -h | head -1)"
if [ -v CONTAINER_TYPE ]; then
echo "| Type : $CONTAINER_TYPE"
fi
if [ -v CONTAINER_INSTANCE ]; then
echo "| Instance : $CONTAINER_INSTANCE"
fi
if [ -v CONTAINER_SERVICE ]; then
echo "| Service : $CONTAINER_SERVICE"
fi
if [ -v LOG_PATH ]; then
echo "| Log path : $LOG_PATH"
fi
echo "+====================================================="
}
# Begin configuration before starting daemonized process
# and start generating host keys
function begin_config {
echo "=> BEGIN MEMCACHE CONFIGURATION"
if [[ ! -d $LOG_PATH ]]; then
echo "log directory $LOG_PATH not found"
mkdir -p $LOG_PATH;
echo "log directory $LOG_PATH CREATED"
else
echo "log directory $LOG_PATH EXIST"
fi
chmod 0774 $LOG_PATH;
}
# End configuration process just before starting daemon
function end_config {
echo "=> END MEMCACHE CONFIGURATION"
}
# Start the memcache server as a deamon and execute it inside
# the running shell
function start_daemon {
echo "=> Starting memcache daemon ..." | tee -a $STARTUPLOG
display_container_started | tee -a $STARTUPLOG
exec memcached -u daemon -v
}
if [[ "$0" == *"run.sh" && ! $1 = "" ]];then
eval "$@";
fi
check_environment | tee -a $STARTUPLOG
display_container_memcache_header | tee -a $STARTUPLOG
begin_config | tee -a $STARTUPLOG
end_config | tee -a $STARTUPLOG
start_daemon
|