Advertisement
dcuddihy-acr-me

Untitled

Feb 14th, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. set -e
  2. set -x
  3.  
  4. echo "Starting: " $(date)
  5.  
  6. BBCONFIG_REPO=bbconfig-1.10
  7. BBCONFIG_TAG=1.10.0
  8.  
  9. # Deploys new version of bbconfig
  10. pushd /home/eroboto/hgdev/org.bitbucket/autonomy/${BBCONFIG_REPO}
  11. hg update -r ${BBCONFIG_TAG}
  12. make opt-bbconfig
  13. /opt/bbconfig/current/bin/ensure-crons.sh
  14. popd
  15.  
  16. # Deploys new versions of spice projects
  17. apt-get -y --force-yes update
  18. apt-get -y --force-yes install bbmint bbdill bbthyme bbginger
  19.  
  20. echo "Done: " $(date)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement