libexec/dna in alpha_omega-0.0.79 vs libexec/dna in alpha_omega-0.0.80
- old
+ new
@@ -1,7 +1,48 @@
#!/bin/bash -e
-export LOCAL_ONLY=true
+case "$(basename $0)" in
+ deploy|major|patch)
+ bundle exec cap ssh_gateway "$@" deploy
+ ;;
-{
- cap $(for a in "$@"; do echo $a.yaml; done)
-} 2>&1 | grep eea914aaa8dde6fdae29242b1084a2b0415eefaf | sed 's#eea914aaa8dde6fdae29242b1084a2b0415eefaf ##'
+ rollback)
+ bundle exec cap ssh_gateway "$@" deploy:rollback
+ ;;
+
+ stage)
+ bundle exec cap ssh_gateway "$@" deploy:update_code
+ ;;
+
+ compare)
+ bundle exec cap ssh_gateway "$@" deploy:compare
+ ;;
+
+ restart)
+ bundle exec cap ssh_gateway "$@" deploy:restart
+ ;;
+
+ shell)
+ bundle exec cap ssh_gateway "$@" shell
+ ;;
+
+ hosts)
+ export LOCAL_ONLY=true
+
+ {
+ cap $(for a in "$@"; do echo $a.echo; done)
+ } 2>&1 | grep eea914aaa8dde6fdae29242b1084a2b0415eefaf | awk '{print $NF}' | sort -u
+ ;;
+
+ dna)
+ export LOCAL_ONLY=true
+
+ {
+ cap $(for a in "$@"; do echo $a.yaml; done)
+ } 2>&1 | grep eea914aaa8dde6fdae29242b1084a2b0415eefaf | sed 's#eea914aaa8dde6fdae29242b1084a2b0415eefaf ##'
+ ;;
+
+ *)
+ bundle exec cap ssh_gateway "$@"
+ ;;
+esac
+