Download newer version (8.23.0-2) of rsyslog from jessie-backports in hopes of eliminating memory leaks (#1912)
This commit is contained in:
parent
4d784d82ce
commit
7aefa185d4
@ -200,7 +200,6 @@ sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y in
|
|||||||
openssh-server \
|
openssh-server \
|
||||||
python \
|
python \
|
||||||
python-setuptools \
|
python-setuptools \
|
||||||
rsyslog \
|
|
||||||
monit \
|
monit \
|
||||||
python-apt \
|
python-apt \
|
||||||
traceroute \
|
traceroute \
|
||||||
@ -228,6 +227,10 @@ sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y in
|
|||||||
tcptraceroute \
|
tcptraceroute \
|
||||||
mtr-tiny
|
mtr-tiny
|
||||||
|
|
||||||
|
# Install a newer version of rsyslog from jessie-backports in hopes of
|
||||||
|
# eliminating memory leaks
|
||||||
|
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y -t jessie-backports install rsyslog
|
||||||
|
|
||||||
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y download \
|
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y download \
|
||||||
grub-pc-bin
|
grub-pc-bin
|
||||||
|
|
||||||
|
@ -25,12 +25,15 @@ RUN apt-get update
|
|||||||
|
|
||||||
# Pre-install fundamental packages
|
# Pre-install fundamental packages
|
||||||
RUN apt-get -y install \
|
RUN apt-get -y install \
|
||||||
rsyslog \
|
|
||||||
vim-tiny \
|
vim-tiny \
|
||||||
perl \
|
perl \
|
||||||
python \
|
python \
|
||||||
less
|
less
|
||||||
|
|
||||||
|
# Install a newer version of rsyslog from jessie-backports in hopes of
|
||||||
|
# eliminating memory leaks
|
||||||
|
RUN apt-get -y -t jessie-backports install rsyslog
|
||||||
|
|
||||||
# Pre-install troubleshooting packages
|
# Pre-install troubleshooting packages
|
||||||
RUN apt-get -y install socat
|
RUN apt-get -y install socat
|
||||||
|
|
||||||
|
@ -5,3 +5,4 @@ deb http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-fre
|
|||||||
deb-src http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free
|
deb-src http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free
|
||||||
deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
||||||
deb-src http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
deb-src http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
||||||
|
deb http://debian-archive.trafficmanager.net/debian/ jessie-backports main contrib non-free
|
||||||
|
@ -5,3 +5,4 @@ deb http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-fre
|
|||||||
deb-src http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free
|
deb-src http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free
|
||||||
deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
||||||
deb-src http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
deb-src http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
||||||
|
deb http://debian-archive.trafficmanager.net/debian/ jessie-backports main contrib non-free
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
deb http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free
|
deb http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free
|
||||||
deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free
|
||||||
|
deb http://debian-archive.trafficmanager.net/debian/ jessie-backports main contrib non-free
|
||||||
|
@ -6,7 +6,7 @@ RUN echo "deb http://debian-archive.trafficmanager.net/debian/ jessie main contr
|
|||||||
echo "deb-src http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free" >> /etc/apt/sources.list && \
|
echo "deb-src http://debian-archive.trafficmanager.net/debian/ jessie main contrib non-free" >> /etc/apt/sources.list && \
|
||||||
echo "deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free" >> /etc/apt/sources.list && \
|
echo "deb http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free" >> /etc/apt/sources.list && \
|
||||||
echo "deb-src http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free" >> /etc/apt/sources.list && \
|
echo "deb-src http://debian-archive.trafficmanager.net/debian-security/ jessie/updates main contrib non-free" >> /etc/apt/sources.list && \
|
||||||
echo 'deb http://debian-archive.trafficmanager.net/debian jessie-backports main' >> /etc/apt/sources.list
|
echo "deb http://debian-archive.trafficmanager.net/debian/ jessie-backports main contrib non-free" >> /etc/apt/sources.list
|
||||||
|
|
||||||
## Make apt-get non-interactive
|
## Make apt-get non-interactive
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
Reference in New Issue
Block a user