mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
The gnupg-scdaemon pre-install script propagated the exit code when the gnupg group already exists. Fix this by ending with `exit 0`, as is done in other pre-install scripts. Fixes #11886
4 lines
49 B
Bash
4 lines
49 B
Bash
#!/bin/sh
|
|
addgroup -S gnupg 2> /dev/null
|
|
|
|
exit 0
|