mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-31 11:21:17 +02:00
installmgr was trying to install into /usr/share/sword without permissions, resulting in great confusion. This change lets all members of the 'sword' group install modules systemwide.
4 lines
117 B
Bash
Executable File
4 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
echo "Adding 'sword' group for installing SWORD modules systemwide"
|
|
addgroup sword 2>/dev/null >&2 || true
|