diff options
-rw-r--r-- | hosts/alsvid3/postinst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/alsvid3/postinst b/hosts/alsvid3/postinst index 39c33a6..6bd8b22 100644 --- a/hosts/alsvid3/postinst +++ b/hosts/alsvid3/postinst @@ -167,7 +167,8 @@ key_uri="${key_uri}/repositories/home:losuler:icecat/Debian_10/Release.key" cat >"${target}/etc/apt/sources.list.d/icecat.list" <<-EOF deb ${deb_uri} / EOF -wget -O - "${key_uri}" | gpg --dearmor >/etc/apt/trusted.gpg.d/icecat.gpg +wget -O - "${key_uri}" | gpg --dearmor \ + >"${target}/etc/apt/trusted.gpg.d/icecat.gpg" in_target apt-get update in_target apt-get -q -y install icecat |