mirror of https://github.com/zulip/zulip.git
puppet: Don’t install netcat.
It’s been unused since commit 0af22dad18
(#13239).
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
81b6583d28
commit
d751e0cece
|
@ -27,8 +27,6 @@ class zulip::base {
|
|||
'crudini',
|
||||
# Used for tools like sponge
|
||||
'moreutils',
|
||||
# Used in scripts
|
||||
'netcat',
|
||||
# Nagios monitoring plugins
|
||||
$zulip::common::nagios_plugins,
|
||||
# Required for using HTTPS in apt repositories.
|
||||
|
|
|
@ -39,7 +39,7 @@ RUN apt-get update \
|
|||
locales \
|
||||
xvfb \
|
||||
parallel \
|
||||
netcat unzip zip jq \
|
||||
unzip zip jq \
|
||||
python3-pip \
|
||||
&& ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime \
|
||||
&& {{ locale-gen en_US.UTF-8 || true; }} \
|
||||
|
|
|
@ -144,7 +144,6 @@ UBUNTU_COMMON_APT_DEPENDENCIES = [
|
|||
"redis-server",
|
||||
"hunspell-en-us",
|
||||
"puppet-lint",
|
||||
"netcat", # Used for flushing memcached
|
||||
"default-jre-headless", # Required by vnu-jar
|
||||
*THUMBOR_VENV_DEPENDENCIES,
|
||||
]
|
||||
|
|
|
@ -46,7 +46,7 @@ run apt-get dist-upgrade -y
|
|||
# As an optimization, we install a bunch of packages the installer
|
||||
# would install for itself.
|
||||
run apt-get install -y --no-install-recommends \
|
||||
xvfb parallel netcat unzip zip jq python3-pip wget curl eatmydata \
|
||||
xvfb parallel unzip zip jq python3-pip wget curl eatmydata \
|
||||
git crudini openssl ssl-cert \
|
||||
build-essential python3-dev \
|
||||
memcached redis-server \
|
||||
|
|
Loading…
Reference in New Issue