config/fish: add ANSIBLE_HOME to follow XDG spec

This commit is contained in:
Hoang Nguyen 2023-12-02 00:00:00 +07:00
parent 147365885c
commit 8a5675d252
Signed by: folliehiyuki
GPG Key ID: B0567C20730E9B11
3 changed files with 2 additions and 3 deletions

View File

@ -15,6 +15,4 @@ become_user = root
[ssh_connection]
pipelining = True
# https://github.com/ansible/ansible/issues/6309
scp_if_ssh = smart
transfer_method = smart

View File

@ -53,6 +53,7 @@ set -gx CDKTF_HOME $XDG_DATA_HOME/terraform-cdk
set -gx TF_PLUGIN_CACHE_DIR $XDG_CACHE_HOME/terraform/plugin-cache
set -gx APPTAINER_CACHEDIR $XDG_CACHE_HOME/apptainer
set -gx MAGEFILE_CACHE $XDG_CACHE_HOME/magefile
set -gx ANSIBLE_HOME $XDG_DATA_HOME/ansible
set -gx MIX_XDG true
# set -gx MANPATH :$XDG_DATA_HOME/man

View File

@ -27,7 +27,7 @@ RUN adduser -D -s /usr/bin/fish -h /home/kawaii kawaii \
# Setup abuild and aports repository
USER kawaii
RUN abuild-keygen -a -i -n \
&& git clone --depth 1 https://gitlab.alpinelinux.org/alpine/aports.git /home/kawaii/aports
&& git clone --depth 1 --single-branch https://gitlab.alpinelinux.org/alpine/aports.git /home/kawaii/aports
WORKDIR /home/kawaii/aports
CMD ["/usr/bin/fish"]