Compare commits
3 commits
e490b67377
...
c55b465c2f
Author | SHA1 | Date | |
---|---|---|---|
c55b465c2f | |||
bc13ff7711 | |||
97e5a2b921 |
3 changed files with 11 additions and 3 deletions
4
.envrc
4
.envrc
|
@ -10,6 +10,6 @@ rm -rf .cache/bw/git_deploy
|
|||
export BW_GIT_DEPLOY_CACHE=.cache/bw/git_deploy
|
||||
mkdir -p "$BW_GIT_DEPLOY_CACHE"
|
||||
export EXPERIMENTAL_UPLOAD_VIA_CAT=1
|
||||
export BW_ITEM_WORKERS=16
|
||||
export BW_NODE_WORKERS=32
|
||||
export BW_ITEM_WORKERS=64
|
||||
export BW_NODE_WORKERS=16
|
||||
unset PS1
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
defaults = {
|
||||
'apt': {
|
||||
'packages': {
|
||||
'resolvconf': {
|
||||
'ifupdown': {
|
||||
'installed': False,
|
||||
},
|
||||
'openresolv': {
|
||||
'installed': False,
|
||||
},
|
||||
'resolvconf': {
|
||||
'installed': False,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
while ! ping -c1 -t2 "${server_ip}"
|
||||
do
|
||||
sleep 3
|
||||
done
|
||||
|
||||
set -exu
|
||||
|
||||
ssh="ssh -o ConnectTimeout=5 root@${server_ip}"
|
||||
|
|
Loading…
Reference in a new issue