From c7c678410fd23664467d53e18ba3fafb55addf9f Mon Sep 17 00:00:00 2001 From: Dan Girshovich Date: Wed, 3 Apr 2024 20:16:57 +0200 Subject: [PATCH] slot-ctrl: fix binary name in postinst (#41) --- orb-slot-ctrl/debpkg/DEBIAN/postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orb-slot-ctrl/debpkg/DEBIAN/postinst b/orb-slot-ctrl/debpkg/DEBIAN/postinst index 6eb08f75..103f05c8 100755 --- a/orb-slot-ctrl/debpkg/DEBIAN/postinst +++ b/orb-slot-ctrl/debpkg/DEBIAN/postinst @@ -2,5 +2,5 @@ set -e if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # install get-slot - ln -s /usr/bin/slot-ctrl /usr/bin/get-slot + ln -s /usr/bin/orb-slot-ctrl /usr/bin/get-slot fi