From b7a50b9414aa4743a39be9baa1d7f80e58be3bed Mon Sep 17 00:00:00 2001 From: Lukasz Jagiello Date: Mon, 27 Nov 2017 17:02:16 -0800 Subject: [PATCH] Add shadow-utils dependency to rpm package (#3505) --- scripts/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.py b/scripts/build.py index 12a8a6b22..fbf3c8590 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -646,7 +646,7 @@ def package(build_output, pkg_name, version, nightly=False, iteration=1, static= package_build_root, current_location) if package_type == "rpm": - fpm_command += "--depends coreutils --rpm-posttrans {}".format(POSTINST_SCRIPT) + fpm_command += "--depends coreutils --depends shadow-utils --rpm-posttrans {}".format(POSTINST_SCRIPT) out = run(fpm_command, shell=True) matches = re.search(':path=>"(.*)"', out) outfile = None