Merge install and bootstrap step into one

This commit is contained in:
2020-12-09 19:32:11 +01:00
parent 15edc30832
commit 0dc024f14a
5 changed files with 25 additions and 33 deletions

View File

@@ -26,7 +26,7 @@ docker run -ti --rm -v ${tmpdir}/dotfiles.tar.gz:/tmp/dotfiles.tar.gz:ro --hostn
pacman -Syu --noconfirm python3
cd $(mktemp -d)
tar xf /tmp/dotfiles.tar.gz -C .
ANSIBLE_EXTRA_ARGS="-e manage_services=false" ./bootstrap.sh
ANSIBLE_EXTRA_ARGS="-e manage_services=false" ./install.sh
read -p "Done, [return] to continue "
'
@@ -36,5 +36,5 @@ docker run -ti --rm -v ${tmpdir}/dotfiles.tar.gz:/tmp/dotfiles.tar.gz:ro --hostn
cd $(mktemp -d)
tar xf /tmp/dotfiles.tar.gz -C .
ANSIBLE_EXTRA_ARGS="-e manage_services=false" ./bootstrap.sh
ANSIBLE_EXTRA_ARGS="-e manage_services=false" ./install.sh
'