From 8f12503203a92d61ad822b71dcb6986ff6893aab Mon Sep 17 00:00:00 2001 From: patbec <29308797+patbec@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:54:12 +0200 Subject: [PATCH 1/4] Updated incorrect path. --- molecule/default/converge.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml index 34cbe1b..80fdad3 100644 --- a/molecule/default/converge.yml +++ b/molecule/default/converge.yml @@ -23,15 +23,15 @@ zsh_system_config: - template: "test_zshrc.j2" - filename: "/etc/zshrc" + filename: "zshrc" - template: "test_zshenv.j2" - filename: "/etc/zshenv" + filename: "zshenv" - template: "test_zprofile.j2" - filename: "/etc/zprofile" + filename: "zprofile" - template: "test_zlogin.j2" - filename: "/etc/zlogin" + filename: "zlogin" - template: "test_zlogout.j2" - filename: "/etc/zlogout" + filename: "zlogout" zsh_dependencies: - zsh-autosuggestions From 117495f8728b210f67521a9bf826bebdba1b26d8 Mon Sep 17 00:00:00 2001 From: patbec <29308797+patbec@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:54:36 +0200 Subject: [PATCH 2/4] Updated path in documentation. --- roles/zsh/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/zsh/README.md b/roles/zsh/README.md index a5f43b5..1c05aa0 100644 --- a/roles/zsh/README.md +++ b/roles/zsh/README.md @@ -66,18 +66,18 @@ zsh_users_config: ```yaml zsh_system_config: - template: "zshrc.j2" - filename: "/etc/zshrc" + filename: "zshrc" - template: "zshenv.j2" - filename: "/etc/zshenv" + filename: "zshenv" - template: "zprofile.j2" - filename: "/etc/zprofile" + filename: "zprofile" - template: "zlogin.j2" - filename: "/etc/zlogin" + filename: "zlogin" - template: "zlogout.j2" - filename: "/etc/zlogout" + filename: "zlogout" ``` -The target path is the `/etc/` directory. +The target path is the `/etc/` directory, this can be changed in the variable `zsh_global`. ## Examples From fff140bcb2cffd1acf40cfd66c3f254b55e92f22 Mon Sep 17 00:00:00 2001 From: patbec <29308797+patbec@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:55:22 +0200 Subject: [PATCH 3/4] Increased version. --- galaxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy.yml b/galaxy.yml index 77e4e31..b7e3cd4 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: bec name: shell -version: 1.1.0 +version: 1.1.1 readme: README.md authors: - Patrick Becker From 4c1b626eeaffb99d57888cec8c6e70bc270bdacb Mon Sep 17 00:00:00 2001 From: patbec <29308797+patbec@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:55:31 +0200 Subject: [PATCH 4/4] Updated changelog. --- changelogs/changelog.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c4c911c..bfdf1e3 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -32,3 +32,8 @@ releases: bugfixes: - Fixed incorrect resolved $HOME variable. The user path is now determined via the user module. release_date: "2023-10-01" + 1.1.1: + changes: + minor_changes: + - Updated incorrect path in documentation and unit test. + release_date: "2023-10-01"