From 6970945d92b0938dee3ae77d2aff8d0a95cbfc4a Mon Sep 17 00:00:00 2001 From: Gabriel Russell Date: Tue, 27 Sep 2016 13:23:09 -0400 Subject: SERVER-26376 add mongoreplay to release --- buildscripts/packager.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'buildscripts/packager.py') diff --git a/buildscripts/packager.py b/buildscripts/packager.py index 1d46aa6419e..97c3a95f275 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -447,11 +447,10 @@ def make_package(distro, build_os, arch, spec, srcdir): # packaging infrastructure will move the files to wherever they # need to go. unpack_binaries_into(build_os, arch, spec, sdir) - # Remove the mongosniff binary due to libpcap dynamic - # linkage. FIXME: this removal should go away - # eventually. - if os.path.exists(sdir + "bin/mongosniff"): - os.unlink(sdir + "bin/mongosniff") + # Remove the mongoreplay binary due to libpcap dynamic + # linkage. + if os.path.exists(sdir + "bin/mongoreplay"): + os.unlink(sdir + "bin/mongoreplay") return distro.make_pkg(build_os, arch, spec, srcdir) def make_repo(repodir, distro, build_os, spec): -- cgit v1.2.1