From 5aa10f071ef1bdd617f8451d03ef15f6760e83a7 Mon Sep 17 00:00:00 2001 From: Laura Paduano Date: Mon, 24 Sep 2018 17:02:02 +0200 Subject: [PATCH] ceph-dashboard-pull-requests: fix another permission denied issue when using ``apt-key add`` Signed-off-by: Laura Paduano --- ceph-dashboard-pull-requests/setup/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-dashboard-pull-requests/setup/setup b/ceph-dashboard-pull-requests/setup/setup index d3195604..ae1d0fcb 100644 --- a/ceph-dashboard-pull-requests/setup/setup +++ b/ceph-dashboard-pull-requests/setup/setup @@ -4,7 +4,7 @@ set -ex if grep -q debian /etc/*-release; then sudo bash -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' wget https://dl.google.com/linux/linux_signing_key.pub - apt-key add linux_signing_key.pub + sudo apt-key add linux_signing_key.pub sudo apt-get update sudo apt-get install -y google-chrome-stable -- 2.39.5