mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 06:17:14 +02:00
Redis is not a free software (per OSI) anymore, it's being replaced with its fork named Valkey.
7 lines
137 B
Bash
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
|