Fix entering secret manually. Fix missing Dolphin bookmarks.

This commit is contained in:
Andreas B. Mundt 2023-09-14 18:58:55 +02:00
parent cb2ed82715
commit 1b990b8cdb
3 changed files with 4 additions and 2 deletions

View file

@ -70,6 +70,7 @@ L200:
# 10.190.51.[1:10]: # 10.190.51.[1:10]:
L300: L300:
hosts: hosts:
10.190.52.61:
# 10.190.52.[1:10]: # 10.190.52.[1:10]:
L400: L400:
hosts: hosts:

View file

@ -6,8 +6,7 @@
become: yes become: yes
pre_tasks: pre_tasks:
- pause: - pause:
prompt: "Enter global-admin active directory password, leave empty to skip domain join" prompt: "Enter global-admin AD password. Leave empty to skip domain join"
minutes: 5
echo: false echo: false
register: adpw register: adpw
no_log: true no_log: true

View file

@ -6,6 +6,8 @@ set -eu
file="${1:-$HOME/.local/share/user-places.xbel}" file="${1:-$HOME/.local/share/user-places.xbel}"
[[ -e "$file" ]] || exit 0
if grep -q "Tausch\|Nextcloud" "$file" ; then if grep -q "Tausch\|Nextcloud" "$file" ; then
echo "Your Dolphin seems to already contain 'Tausch' and/or 'Nextcloud'." echo "Your Dolphin seems to already contain 'Tausch' and/or 'Nextcloud'."
exit 0 exit 0