lib/tape/ansible_runner.rb in taperole-1.1.5 vs lib/tape/ansible_runner.rb in taperole-1.2.0

- old
+ new

@@ -28,14 +28,17 @@ proc {ansible '-t db_reset -e force_db_reset=true'}, "wipes and re-seeds the DB" action :bundle, proc {ansible '-t bundle -e force_bundle=true'}, "Bundles the gems running on the app servers" + action :be_deploy, + proc {ansible_deploy '-t be_deploy'}, + "Re-deploys fe code" action :fe_deploy, proc {ansible_deploy '-t fe_deploy'}, "Re-deploys fe code" action :deploy, - proc {ansible_deploy '-t be_deploy'}, + proc {ansible_deploy '-t be_deploy,fe_deploy'}, "Checks out app code, installs dependencies and restarts unicorns for "\ "both FE and BE code." action :everything, proc {ansible}, "This does it all." def initialize(*args)