feat: change owner to devuser for .ssh/*, .config and .config/fish

This commit is contained in:
Pallav Vasa 2025-05-16 23:31:41 +00:00
parent 991478a0b0
commit 422a962a85

View File

@ -16,8 +16,9 @@ buildah run "$ctr" -- fish -c '
ssh-keyscan -p 2222 10.88.0.1 >> $HOME/.ssh/known_hosts;
ssh-keyscan -p 22 github.com >> $HOME/.ssh/known_hosts;
chown -R '"$DEV_USER"':'"$DEV_USER"' $HOME/.local $HOME/.config/fish/completions \
$HOME/.config/fish/functions $HOME/.config/fish/fish_variables;
chown '"$DEV_USER"':'"$DEV_USER"' $HOME/.config/tmux;
$HOME/.config/fish/functions $HOME/.config/fish/fish_variables $HOME/.ssh;
chown '"$DEV_USER"':'"$DEV_USER"' $HOME/.config $HOME/.config/fish \
$HOME/.config/tmux;
'
buildah config \