From 1b990b8cdb2603c3c7aa560d2f96dab9de05fae0 Mon Sep 17 00:00:00 2001 From: "Andreas B. Mundt" Date: Thu, 14 Sep 2023 18:58:55 +0200 Subject: [PATCH] Fix entering secret manually. Fix missing Dolphin bookmarks. --- inventory/inventory.yml | 1 + lmn-desktop.yml | 3 +-- roles/lmn_fvs/files/lmn-patch-dolphin.sh | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/inventory/inventory.yml b/inventory/inventory.yml index edb8fb8..7d94e57 100644 --- a/inventory/inventory.yml +++ b/inventory/inventory.yml @@ -70,6 +70,7 @@ L200: # 10.190.51.[1:10]: L300: hosts: + 10.190.52.61: # 10.190.52.[1:10]: L400: hosts: diff --git a/lmn-desktop.yml b/lmn-desktop.yml index 364b7d6..6237d17 100644 --- a/lmn-desktop.yml +++ b/lmn-desktop.yml @@ -6,8 +6,7 @@ become: yes pre_tasks: - pause: - prompt: "Enter global-admin active directory password, leave empty to skip domain join" - minutes: 5 + prompt: "Enter global-admin AD password. Leave empty to skip domain join" echo: false register: adpw no_log: true diff --git a/roles/lmn_fvs/files/lmn-patch-dolphin.sh b/roles/lmn_fvs/files/lmn-patch-dolphin.sh index 301899d..e89daf5 100755 --- a/roles/lmn_fvs/files/lmn-patch-dolphin.sh +++ b/roles/lmn_fvs/files/lmn-patch-dolphin.sh @@ -6,6 +6,8 @@ set -eu file="${1:-$HOME/.local/share/user-places.xbel}" +[[ -e "$file" ]] || exit 0 + if grep -q "Tausch\|Nextcloud" "$file" ; then echo "Your Dolphin seems to already contain 'Tausch' and/or 'Nextcloud'." exit 0