Move ansible_deploy under .config.

This commit is contained in:
Tom Alexander 2022-10-11 21:45:56 -04:00
parent 68a164467d
commit 6eeac615aa
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@
owner: "{{ account_name.stdout }}"
group: "{{ group_name.stdout }}"
loop:
- .ansible_deploy
- .config/ansible_deploy
- import_tasks: tasks/peruser_freebsd.yaml
when: 'os_flavor == "freebsd"'

View File

@ -33,10 +33,10 @@ done
PR_NO_COLOR="%{$terminfo[sgr0]%}"
PS1="[$PR_BLUE%n$PR_WHITE@$PR_GREEN%U%m%u$PR_NO_COLOR:$PR_RED%2c$PR_NO_COLOR]%(!.#.$) "
source $HOME/.ansible_deploy/zsh-histdb/sqlite-history.zsh
source $HOME/.config/ansible_deploy/zsh-histdb/sqlite-history.zsh
autoload -Uz add-zsh-hook
source $HOME/.ansible_deploy/zsh-histdb/histdb-interactive.zsh
source $HOME/.config/ansible_deploy/zsh-histdb/histdb-interactive.zsh
bindkey '^r' _histdb-isearch
# TODO: Consider moving to /etc/profile.d
@ -44,4 +44,4 @@ while read file; do
if [ -e "$file" ]; then
source "$file"
fi
done <<<"$(find $HOME/.ansible_deploy/zshrc -maxdepth 1 -type f -name '*.zsh' -print)"
done <<<"$(find $HOME/.config/ansible_deploy/zshrc -maxdepth 1 -type f -name '*.zsh' -print)"

View File

@ -4,13 +4,13 @@
- name: clone zsh-histdb repo
git:
repo: "https://github.com/larkery/zsh-histdb.git"
dest: "{{ account_homedir.stdout }}/.ansible_deploy/zsh-histdb"
dest: "{{ account_homedir.stdout }}/.config/ansible_deploy/zsh-histdb"
version: "6c7159be9de8586ac2f19d179d562cf5d10a2bab"
diff: false
- name: Create zshrc additional imports directory
file:
name: "{{ account_homedir.stdout }}/.ansible_deploy/zshrc"
name: "{{ account_homedir.stdout }}/.config/ansible_deploy/zshrc"
state: directory
mode: 0700
owner: "{{ account_name.stdout }}"
@ -19,7 +19,7 @@
- name: Configure zshrc additional imports
copy:
src: "files/zshrc_{{ item }}"
dest: "{{ account_homedir.stdout }}/.ansible_deploy/zshrc/{{ item }}.zsh"
dest: "{{ account_homedir.stdout }}/.config/ansible_deploy/zshrc/{{ item }}.zsh"
mode: 0600
owner: "{{ account_name.stdout }}"
group: "{{ group_name.stdout }}"