From: Iker Pedrosa Date: Mon, 29 Apr 2024 08:16:44 +0000 (+0200) Subject: share/containers: sort configuration options X-Git-Tag: 4.15.2~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbf3b1ad51277abd3e51a4d36e59c4c9cd20e984;p=thirdparty%2Fshadow.git share/containers: sort configuration options Signed-off-by: Iker Pedrosa Reviewed-by: Alejandro Colomar --- diff --git a/share/containers/fedora.dockerfile b/share/containers/fedora.dockerfile index 81e8e1cee..aefbee121 100644 --- a/share/containers/fedora.dockerfile +++ b/share/containers/fedora.dockerfile @@ -12,19 +12,19 @@ COPY ./ /usr/local/src/shadow/ WORKDIR /usr/local/src/shadow/ RUN ./autogen.sh \ - --enable-shadowgrp \ + --enable-lastlog \ + --enable-logind=no \ --enable-man \ + --enable-shadowgrp \ + --enable-shared \ --with-audit \ - --with-sha-crypt \ --with-bcrypt \ - --with-yescrypt \ + --with-group-name-max-length=32 \ --with-selinux \ - --without-libpam \ - --enable-shared \ + --with-sha-crypt \ + --with-yescrypt \ --without-libbsd \ - --with-group-name-max-length=32 \ - --enable-lastlog \ - --enable-logind=no + --without-libpam RUN make -Orecurse -j4 RUN bash -c "trap 'cat &2' ERR; make check;" RUN make install