From d05f7b8b148a28328b67a2a18ecc112feabb8254 Mon Sep 17 00:00:00 2001 From: Jens Steidl <Jens.Steidl@slub-dresden.de> Date: Tue, 7 Feb 2023 14:41:18 +0100 Subject: [PATCH] fix: file name --- tasks/configure_processing_user.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/configure_processing_user.yml b/tasks/configure_processing_user.yml index 670259d..31d993b 100644 --- a/tasks/configure_processing_user.yml +++ b/tasks/configure_processing_user.yml @@ -29,9 +29,9 @@ cd ~ # Bash-Completion funktioniert ab 2020.2 anders, s. Abschnitt AUTOCOMPLETION in perldoc bin/subapp_rosetta.pl und bin/disapp_rosetta.pl -- name: configure .bash-profile for DisApp user +- name: configure .bash_profile for DisApp user ansible.builtin.blockinfile: - path: "/home/{{ vault_disapp_user }}/.bash-profile" + path: "/home/{{ vault_disapp_user }}/.bash_profile" backup: "no" create: "yes" owner: "{{ vault_disapp_user }}" @@ -81,9 +81,9 @@ cd ~ # Bash-Completion funktioniert ab 2020.2 anders, s. Abschnitt AUTOCOMPLETION in perldoc bin/subapp_rosetta.pl und bin/disapp_rosetta.pl -- name: configure .bash-profile for SubApp user +- name: configure .bash_profile for SubApp user ansible.builtin.blockinfile: - path: "/home/{{ vault_subapp_user }}/.bash-profile" + path: "/home/{{ vault_subapp_user }}/.bash_profile" backup: "no" create: "yes" owner: "{{ vault_subapp_user }}" -- GitLab