aports/community/redis/redis.pre-install
Jakub Jirutka c036781008 community/redis: move from main
Redis is not a free software (per OSI) anymore, it's being replaced with
its fork named Valkey.
2024-05-01 07:21:25 +00:00

7 lines
137 B
Bash

#!/bin/sh
addgroup -S redis 2>/dev/null
adduser -S -D -H -h /var/lib/redis -s /sbin/nologin -G redis -g redis redis 2>/dev/null
exit 0