Commit f858b98a9c9d633f7d9d7c0d04d3f8a723def4cb

Authored by Antonio Terceiro
1 parent 1728c586

Script to bootstrap a Debian box for development

It will install all the dependencies listed in debian/control that are
not specific to production environments (those are filtered out via a
blacklist)
Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
debian/bootstrap 0 → 100755
@@ -0,0 +1,4 @@ @@ -0,0 +1,4 @@
  1 +#!/bin/sh
  2 +
  3 +dependencies=$(sed -e '/^Depends:.*rails/!d; s/Depends: //; s/([^)]*)//g; s/,\s*/\n/g' debian/control | grep -v 'memcached\|debconf\|mongrel-cluster\|dbconfig-common\|postgresql\|misc:Depends\|adduser')
  4 +apt-get install $dependencies