base/deb: bump 'system' users limit beyond Kolla ones

Haproxy complains that user 'haproxy' already exists during installation
and is not 'system user'. So let bump range for 'system' users to make
it happier.

Our images do not have normal users so it should not affect.

Change-Id: Ia073774c8053111652847a39d80665fd9d3e5dcf
This commit is contained in:
Marcin Juszkiewicz 2019-09-05 14:53:36 +02:00 committed by Marcin Juszkiewicz
parent 90892a25bd
commit 109706aa8b
1 changed files with 4 additions and 1 deletions

View File

@ -285,7 +285,10 @@ RUN if [ $(awk -F '=' '/DISTRIB_RELEASE/{print $2}' /etc/lsb-release) != "{{ sup
echo "Only release '{{ supported_distro_release }}' is supported on {{ base_distro }}"; false; fi
# Customize PS1 bash shell
RUN cat /tmp/kolla_bashrc >> /etc/bash.bashrc
# enlarge 'system users' range so 'haproxy' package will not complain
# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939470
RUN cat /tmp/kolla_bashrc >> /etc/bash.bashrc \
&& sed -i -e s/LAST_SYSTEM_UID=999/LAST_SYSTEM_UID=59999/g /etc/adduser.conf
# This will prevent questions from being asked during the install
ENV DEBIAN_FRONTEND noninteractive