From 86d138e8e3a54e68242a4a1f9b0a8fd7f3419b44 Mon Sep 17 00:00:00 2001 From: chabad360 Date: Sat, 20 Oct 2018 00:54:21 -0400 Subject: [PATCH] bench setup anything-else should work now (#56) --- dbench | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dbench b/dbench index 446064fb..0eb66e5c 100755 --- a/dbench +++ b/dbench @@ -6,14 +6,13 @@ elif [ "$1" == 'init' ]; then docker exec -itu root frappe bash -c "cd /home/frappe && chown -R frappe:frappe ./*" docker exec -i frappe bash -c "cd .. && bench init frappe-bench --ignore-exist --skip-redis-config-generation && cd frappe-bench" docker exec -i frappe bash -c "mv Procfile_docker Procfile && mv sites/common_site_config_docker.json sites/common_site_config.json && bench set-mariadb-host mariadb" -elif [ "$1" == 'setup' ]; then - if [ "$2" == 'docker' ]; then +elif [ "$1" == 'setup' ] && [ "$2" == 'docker' ]; then if [ "$3" == '--swarm-mode' ]; then echo "Docker swarm mode is not currently supported" else docker-compose up -d fi - elif [ "$2" == 'hosts' ]; then +elif [ "$1" == 'setup' ] && [ "$2" == 'hosts' ]; then a=$(cd frappe-bench && ls sites/*/site_config.json | grep -o '/.\+/') a="${a//$'\n'/ }" a=$(echo $a | tr -d / ) @@ -21,7 +20,6 @@ elif [ "$1" == 'setup' ]; then echo $result | sudo tee -a /etc/hosts docker exec -iu root frappe bash -c "echo ${result} | tee --append /etc/hosts" docker exec -itu root frappe bash -c "printf '# User rules for frappe\nfrappe ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers.d/frappe" - fi elif [ "$1" == '-c' ]; then shift user=$1