From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Mon, 11 Sep 2023 14:58:49 +0000 (+0100) Subject: Small bug fixes X-Git-Tag: 4.3~1^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3db7e88cfbde6fc3d5f6eab970c62b619d5c291;p=thirdparty%2Fshairport-sync.git Small bug fixes --- diff --git a/Makefile.am b/Makefile.am index 6cf318d3..d9cfbf6e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -262,12 +262,12 @@ endif # INSTALL_CONFIG_FILES INSTALL_GROUP_TARGET = install-group-local $(INSTALL_GROUP_TARGET): - getent group shairport-sync &>/dev/null || groupadd -r shairport-sync >/dev/null + getent group shairport-sync &>/dev/null || groupadd -r shairport-sync &>/dev/null INSTALL_USER_TARGET = install-user-local $(INSTALL_USER_TARGET): $(INSTALL_GROUP_TARGET) - getent passwd shairport-sync &> /dev/null || useradd -r -M -g shairport-sync -s /usr/sbin/nologin -G audio shairport-sync >/dev/null + getent passwd shairport-sync &>/dev/null || useradd -r -M -g shairport-sync -s /usr/sbin/nologin -G audio shairport-sync &>/dev/null if INSTALL_SYSTEMV