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 1d7f6ec commit c4b1e24Copy full SHA for c4b1e24
install/hst-install-debian.sh
@@ -278,6 +278,13 @@ if [ ! -e '/usr/bin/wget' ]; then
278
check_result $? "Can't install wget"
279
fi
280
281
+# Checking dirmngr
282
+if [ ! -e '/usr/bin/dirmngr' ]; then
283
+ echo "Install missing dirmngr..."
284
+ apt-get -y install dirmngr > /dev/null 2>&1
285
+ check_result $? "Can't install dirmngr"
286
+fi
287
+
288
# Check if apt-transport-https is installed
289
if [ ! -e '/usr/lib/apt/methods/https' ]; then
290
echo "Install missing apt-transport-https..."
0 commit comments