We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed7545b commit 464ccd8Copy full SHA for 464ccd8
usr/sbin/grommunio-repo
@@ -1,4 +1,5 @@
1
#!/bin/bash
2
+export LANG=C
3
GREEN="\x1b[32m"
4
RED="\x1b[31m"
5
TXTRST="\x1b[0m"
@@ -80,7 +81,7 @@ add_grommunio_repo() {
80
81
mkdir -p /etc/apt/keyrings
82
KEYRING=/etc/apt/keyrings/download.grommunio.com
83
tmp=$(mktemp)
- trap 'rm -f $tmp' EXIT INT HUP
84
+ trap 'rm -f $tmp{,.gpg,.asc}' EXIT INT HUP
85
/usr/lib/apt/apt-helper download-file https://download.grommunio.com/RPM-GPG-KEY-grommunio "$tmp"
86
if command -v gpg >/dev/null; then
87
EXT=gpg; KEYRING=$KEYRING.$EXT
0 commit comments