From bb25b6060e434d5240e0eb755b09f4fa3c05fe91 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 26 Apr 2016 15:07:53 -0700 Subject: [PATCH] install: Avoid unnecessarily storing apt key under /root. --- scripts/lib/install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/lib/install b/scripts/lib/install index 64b0f0747b..be04368440 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -15,8 +15,7 @@ DEPLOYMENT_TYPE="${DEPLOYMENT_TYPE:-voyager}" PUPPET_CLASSES="${PUPPET_CLASSES:-zulip::voyager}" # First, install any updates from the apt repo that may be needed -wget -O /root/zulip-ppa.asc https://zulip.com/dist/keys/zulip-ppa.asc -apt-key add /root/zulip-ppa.asc +wget -qO - https://zulip.com/dist/keys/zulip-ppa.asc | apt-key add - cat >/etc/apt/sources.list.d/zulip.list <