2019-03-29 14:51:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
echo "#!/bin/bash
|
|
|
|
export METHOD=local
|
|
|
|
export ONDEMAND_CELLULAR=true
|
|
|
|
export ONDEMAND_WIFI=true
|
|
|
|
export ONDEMAND_WIFI_EXCLUDE=test1,test2
|
2019-07-10 16:31:25 +00:00
|
|
|
export STORE_PKI=true
|
2019-06-19 15:31:43 +00:00
|
|
|
export DNS_ADBLOCKING=true
|
2019-04-26 15:48:28 +00:00
|
|
|
export SSH_TUNNELING=true
|
|
|
|
export ENDPOINT=10.0.8.100
|
|
|
|
export USERS=desktop,user1,user2
|
2020-01-13 16:20:40 +00:00
|
|
|
export EXTRA_VARS='install_headers=false tests=true local_service_ip=172.16.0.1'
|
|
|
|
export ANSIBLE_EXTRA_ARGS=''
|
|
|
|
export REPO_SLUG=${REPOSITORY:-trailofbits/algo}
|
|
|
|
export REPO_BRANCH=${BRANCH:-master}
|
2019-03-29 14:51:50 +00:00
|
|
|
|
2020-01-13 16:20:40 +00:00
|
|
|
curl -s https://raw.githubusercontent.com/${REPOSITORY:-trailofbits/algo}/${BRANCH:-master}/install.sh | sudo -E bash -x"
|