Add missing dependency on netcat in both dev and prod.

Fixes #474.
This commit is contained in:
Tim Abbott
2016-03-29 21:30:48 -07:00
parent d8493b071b
commit c16749d783
2 changed files with 3 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ APT_DEPENDENCIES = {
"puppet", # Used by lint-all "puppet", # Used by lint-all
"gettext", # Used by makemessages i18n "gettext", # Used by makemessages i18n
"curl", # Used for fetching PhantomJS as wget occasionally fails on redirects "curl", # Used for fetching PhantomJS as wget occasionally fails on redirects
"netcat", # Used for flushing memcached
] ]
} }

View File

@@ -7,6 +7,8 @@ class zulip::base {
"python-simplejson", "python-simplejson",
# For development/debugging convenience # For development/debugging convenience
"ipython", "ipython",
# Used in scripts
"netcat",
] ]
package { $base_packages: ensure => "installed" } package { $base_packages: ensure => "installed" }