diff --git a/.openshift/action_hooks/build b/.openshift/action_hooks/build index 4f5dfda..df8aace 100644 --- a/.openshift/action_hooks/build +++ b/.openshift/action_hooks/build @@ -3,3 +3,4 @@ # available. Otherwise it will execute while your application is stopped # before the deploy step. This script gets executed directly, so it # could be python, php, ruby, etc. +echo "BUILD" \ No newline at end of file diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index 07377d1..2c62225 100644 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -7,4 +7,5 @@ # Run db:migrate #pushd ${OPENSHIFT_REPO_DIR} > /dev/null #bundle exec rake db:migrate RAILS_ENV="production" -#popd > /dev/null \ No newline at end of file +#popd > /dev/null +echo "DePlOy" \ No newline at end of file diff --git a/.openshift/action_hooks/post_deploy b/.openshift/action_hooks/post_deploy index f0fc265..727f295 100644 --- a/.openshift/action_hooks/post_deploy +++ b/.openshift/action_hooks/post_deploy @@ -2,3 +2,4 @@ # This is a simple post deploy hook executed after your application # is deployed and started. This script gets executed directly, so # it could be python, php, ruby, etc. +echo "post-deploy!" \ No newline at end of file diff --git a/.openshift/action_hooks/post_start_ruby-1.9 b/.openshift/action_hooks/post_start_ruby-1.9 index ff0debd..3f95233 100644 --- a/.openshift/action_hooks/post_start_ruby-1.9 +++ b/.openshift/action_hooks/post_start_ruby-1.9 @@ -12,3 +12,4 @@ # prevent your application from stopping cleanly or starting at all. # Application start and stop is subject to different timeouts # throughout the system. +echo "post-start!" \ No newline at end of file diff --git a/.openshift/action_hooks/post_stop_ruby-1.9 b/.openshift/action_hooks/post_stop_ruby-1.9 index ff0debd..2b74e4a 100644 --- a/.openshift/action_hooks/post_stop_ruby-1.9 +++ b/.openshift/action_hooks/post_stop_ruby-1.9 @@ -12,3 +12,4 @@ # prevent your application from stopping cleanly or starting at all. # Application start and stop is subject to different timeouts # throughout the system. +echo "post stop!" \ No newline at end of file diff --git a/.openshift/action_hooks/pre_build b/.openshift/action_hooks/pre_build index 7325159..53dc878 100644 --- a/.openshift/action_hooks/pre_build +++ b/.openshift/action_hooks/pre_build @@ -3,3 +3,4 @@ # available. Otherwise it will execute while your application is stopped # before the build step. This script gets executed directly, so it # could be python, php, ruby, etc. +echo "PreBUILD" \ No newline at end of file diff --git a/.openshift/action_hooks/pre_start_ruby-1.9 b/.openshift/action_hooks/pre_start_ruby-1.9 index 96d72f6..e2cb728 100644 --- a/.openshift/action_hooks/pre_start_ruby-1.9 +++ b/.openshift/action_hooks/pre_start_ruby-1.9 @@ -12,5 +12,5 @@ # prevent your application from stopping cleanly or starting at all. # Application start and stop is subject to different timeouts # throughout the system. -echo "Sourcing ENV info..." +echo "Sourcing ENV info... $(whoami)" source ~/app-root/data/.bash_profile \ No newline at end of file diff --git a/.openshift/action_hooks/pre_stop_ruby-1.9 b/.openshift/action_hooks/pre_stop_ruby-1.9 index ff0debd..dc8f3b5 100644 --- a/.openshift/action_hooks/pre_stop_ruby-1.9 +++ b/.openshift/action_hooks/pre_stop_ruby-1.9 @@ -12,3 +12,4 @@ # prevent your application from stopping cleanly or starting at all. # Application start and stop is subject to different timeouts # throughout the system. +echo "PreStop" \ No newline at end of file