Telegraf no longer depends on lsof

so remove it as a dependency from the linux packages.

closes #974
This commit is contained in:
Cameron Sparr 2016-04-08 11:17:56 -06:00
parent 445946792e
commit 1a383b7d90
1 changed files with 1 additions and 2 deletions

View File

@ -560,7 +560,6 @@ def build_packages(build_output, version, nightly=False, rc=None, iteration=1):
fpm_command += "--verbose " fpm_command += "--verbose "
if package_type == "rpm": if package_type == "rpm":
fpm_command += "--depends coreutils " fpm_command += "--depends coreutils "
fpm_command += "--depends lsof "
out = run(fpm_command, shell=True) out = run(fpm_command, shell=True)
matches = re.search(':path=>"(.*)"', out) matches = re.search(':path=>"(.*)"', out)
outfile = None outfile = None