summarylogtreecommitdiffstats
path: root/redis.install
blob: 466646b4da9363ecd2b49a1b42deae8b69d11c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
  touch var/log/redis-x32.log
  chown redis:redis var/log/redis-x32.log
  systemd-tmpfiles --create redis-x32.conf
  install -dm0700 var/lib/redis-x32
  chown -R redis:redis var/lib/redis-x32
}

post_upgrade() {
  post_install
  echo "Redis starts from redis user by default. Check redis-x32.service file"
}