Spotter-VM/redis/install.sh

16 lines
289 B
Bash
Raw Normal View History

#!/bin/sh
2018-10-28 16:04:11 +01:00
set -ev
2018-10-26 15:02:11 +02:00
cd $(realpath $(dirname "${0}"))/install
# Configure Redis
2018-01-27 14:31:11 +01:00
mkdir -p /srv/redis/conf /srv/redis/data
2018-10-25 22:22:36 +02:00
cp srv/redis/conf/redis.conf /srv/redis/conf/redis.conf
2018-01-27 14:31:11 +01:00
chown -R 6379:6379 /srv/redis/data
2018-09-05 22:20:24 +02:00
# Install service
2018-10-25 22:22:36 +02:00
cp etc/init.d/redis /etc/init.d/redis
2018-09-05 22:20:24 +02:00
rc-update -u
2018-10-28 19:50:35 +01:00
exit 0