Browse Source

scripts: update deployment script

pull/1/head
Vaidas Jablonskis 11 years ago
parent
commit
70492f34e9
  1. 14
      script/deploy.sh

14
script/deploy.sh

@ -1,6 +1,8 @@
#!/bin/bash
server='master0.entrydns.net'
if [[ $(whoami) != 'root' ]]; then
echo 'Must be run with sudo.'
exit 1
fi
if [[ $# != 1 ]]; then
echo 'Specify rpm file to deploy'
@ -9,7 +11,9 @@ else:
package=${1}
fi
scp ${package} ${server}:/tmp
yum update -y ${package}
su - entrydns -c 'bundle exec rake db:migrate RAILS_ENV=production'
systemctl reload unicorn-entrydns.service
ssh -t ${server} "sudo yum update -y /tmp/${package}"
ssh -t ${server} "su - entrydns -c 'cd ${HOME} && bundle exec rake db:migrate RAILS_ENV=production'
systemctl status unicorn-entrydns.service

Loading…
Cancel
Save