sets permissions on user homedir
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jeffrey Paul 2020-04-11 13:05:48 -07:00
parent 4127d1d8b1
commit 96b68fe623
3 changed files with 6 additions and 3 deletions

View File

@ -4,7 +4,7 @@ pushd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd)/../"
docker build -t sneak/work .
popd
docker rm -f work
# FIXME ssh host keys
docker run \
-d \

View File

@ -34,8 +34,11 @@ pip3 install black
# install prettier
# install vim-go
echo chown -Rv $UID_TO_ADD:$GID_TO_ADD /home/user
chown -Rv $UID_TO_ADD:$GID_TO_ADD /home/user
sudo \
--set-home \
--non-interactive \
-u $USERNAME_TO_ADD \
bash ./runuser.sh
bash ./user.sh

View File

@ -10,7 +10,6 @@ U="$USERNAME_TO_ADD"
# original home
OH="/hosthome"
# link ~/.home to original home
ln -s "/hosthome" $HOME/.home
@ -20,6 +19,7 @@ export ZSH="$HOME/.zsh"
bash /tmp/installomz.sh --unattended --keep-zshrc
# link in ssh key from original home
mkdir -p ~/.ssh
ln -s ~/.home/.ssh/id_rsa ~/.ssh/id_rsa
ln -s ~/.home/.ssh/id_rsa.pub ~/.ssh/id_rsa.pub