From 505e66b57c88f0bfa3ae0809a672e7f047427301 Mon Sep 17 00:00:00 2001 From: Erik Rose Date: Fri, 5 Feb 2016 18:31:41 -0500 Subject: [PATCH] Move the venv setup scripts to the tools folder. They were the last things left in the bootstrap folder, and they were lonely. --- Vagrantfile | 2 +- bootstrap/dev/README | 1 - docs/contributing.rst | 4 ++-- letsencrypt-auto-source/letsencrypt-auto | 2 +- letsencrypt-auto-source/pieces/bootstrappers/arch_common.sh | 2 +- tests/letstest/scripts/test_apache2.sh | 2 +- tests/letstest/scripts/test_tox.sh | 2 +- {bootstrap/dev => tools}/_venv_common.sh | 0 {bootstrap/dev => tools}/venv.sh | 0 {bootstrap/dev => tools}/venv3.sh | 0 10 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 bootstrap/dev/README rename {bootstrap/dev => tools}/_venv_common.sh (100%) rename {bootstrap/dev => tools}/venv.sh (100%) rename {bootstrap/dev => tools}/venv3.sh (100%) diff --git a/Vagrantfile b/Vagrantfile index 3b9d4dc3a..678abdf72 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,7 +8,7 @@ VAGRANTFILE_API_VERSION = "2" $ubuntu_setup_script = <&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//'` if [ $PYVER -eq 26 ] ; then diff --git a/bootstrap/dev/_venv_common.sh b/tools/_venv_common.sh similarity index 100% rename from bootstrap/dev/_venv_common.sh rename to tools/_venv_common.sh diff --git a/bootstrap/dev/venv.sh b/tools/venv.sh similarity index 100% rename from bootstrap/dev/venv.sh rename to tools/venv.sh diff --git a/bootstrap/dev/venv3.sh b/tools/venv3.sh similarity index 100% rename from bootstrap/dev/venv3.sh rename to tools/venv3.sh