From 52826f844ba256b3702afe4d822413214212b5df Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Sun, 4 May 2025 08:57:49 +0300 Subject: [PATCH] install: Fedora Atomic compatibility for root symlinks --- install | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install b/install index 424f8860..36070824 100755 --- a/install +++ b/install @@ -130,6 +130,12 @@ fi # If running as root, which I am doing regardless of not being supposed to, if [ "$(id -u)" == "0" ]; then + + # Fedora Atomic compatibility + if [ -d /var/roothome ]; then + chmod -v a+x /var/roothome + fi + # Enables laziness on checking whether or not apt is installed mkdir -vp /etc/apt/apt.conf.d/ # Enables progress bar and colours for apt/dpkg, which are helpful at