Skip to content

Instantly share code, notes, and snippets.

@snooc
Last active December 18, 2015 11:29
Show Gist options
  • Select an option

  • Save snooc/5775881 to your computer and use it in GitHub Desktop.

Select an option

Save snooc/5775881 to your computer and use it in GitHub Desktop.

Revisions

  1. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions setup_postgre.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    apt-get install postgresql postgresql-client postgresql-server-dev-all libpq-dev
  2. snooc revised this gist Jun 13, 2013. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions setup_ruby.sh
    Original file line number Diff line number Diff line change
    @@ -61,6 +61,6 @@ rbenv rehash
    # Update RBENV and RUBY-BUILD permissions
    printf "\n [ \033[00;34m..\033[0m ] Updating RBENV and RUBY-BUILD permissions\n\n"
    chgrp -R staff /usr/local/rbenv
    chgrp -R staff /usr/local/shared/ruby-build
    chmod g+rwxXs /usr/local/rbemv
    chmod g+rwxXs /usr/local/shared/ruby-build
    chgrp -R staff /usr/local/share/ruby-build
    chmod g+rwxXs /usr/local/rbenv
    chmod g+rwxXs /usr/local/share/ruby-build
  3. snooc revised this gist Jun 13, 2013. 2 changed files with 57 additions and 1 deletion.
    42 changes: 42 additions & 0 deletions nginx.conf
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,42 @@
    user www-data;
    worker_processes 4;

    pid /var/run/nginx.pid;

    worker_rlimit_nofile 8192;

    events {
    worker_connections 1024;
    }


    http {
    passenger_root /usr/local/rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/passenger-4.0.5;
    passenger_ruby /usr/local/rbenv/versions/2.0.0-p195/bin/ruby;

    include mime.types;
    default_type application/octet-stream;

    log_format main '$remote_addr - $remote_user [$time_local] "$request" '
    '$status $body_bytes_sent "$http_referer" '
    '"$http_user_agent" "$http_x_forwarded_for"';

    access_log logs/access.log main;

    sendfile on;
    tcp_nopush on;

    keepalive_timeout 65;

    gzip on;
    gzip_http_version 1.0;
    gzip_comp_level 5;
    gzip_min_length 512;
    gzip_buffers 4 8k;
    gzip_proxied any;
    gzip_types text/css text/plain text/x-component application/javascript application/json application/xml application/xhtml+xml application/x-font-ttf application/x-font-opentype application/vnd.ms-fontobject image/svg+xml image/x-icon;
    gzip_disable "MSIE [1-6]\.";
    gzip_vary on;

    include /opt/nginx/conf/sites-enabled/*;
    }
    16 changes: 15 additions & 1 deletion setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -23,4 +23,18 @@ mv init-deb.sh /etc/init.d/nginx
    chmod +x /etc/init.d/nginx
    /usr/sbin/update-rc.d -f nginx defaults

    service nginx restart
    service nginx restart

    # Create Deploy user
    printf "\n [ \033[00;34m..\033[0m ] Creating deploy user\n\n"
    useradd -s /bin/bash -m deployer
    passwd deployer
    usermod -a -G sudo deployer
    usermod -a -G staff deployer
    usermod -a -G www-data deployer

    # Create /var/www
    printf "\n [ \033[00;34m..\033[0m ] Creating /var/www\n\n"
    mkdir /var/www
    chown deployer:www-data /var/www

  4. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion setup_ruby.sh
    Original file line number Diff line number Diff line change
    @@ -18,7 +18,7 @@ apt-get -y upgrade
    printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n\n"
    apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \
    libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \
    autoconf libc6-dev ncurses-dev automake libtool bison vim
    autoconf libc6-dev ncurses-dev automake libtool bison vim nodejs

    # Install rbenv
    printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n\n"
  5. snooc revised this gist Jun 13, 2013. 1 changed file with 8 additions and 1 deletion.
    9 changes: 8 additions & 1 deletion setup_ruby.sh
    Original file line number Diff line number Diff line change
    @@ -56,4 +56,11 @@ printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler
    gem update --system
    gem install bundler

    rbenv rehash
    rbenv rehash

    # Update RBENV and RUBY-BUILD permissions
    printf "\n [ \033[00;34m..\033[0m ] Updating RBENV and RUBY-BUILD permissions\n\n"
    chgrp -R staff /usr/local/rbenv
    chgrp -R staff /usr/local/shared/ruby-build
    chmod g+rwxXs /usr/local/rbemv
    chmod g+rwxXs /usr/local/shared/ruby-build
  6. snooc revised this gist Jun 13, 2013. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -12,13 +12,13 @@ gem install passenger
    rbenv rehash

    # Install Nginx
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer -- MAKE SURE TO SET DIR TO /etc/nginx\n\n"
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer\n\n"
    apt-get -y install libcurl4-openssl-dev
    passenger-install-nginx-module

    # Install nginx init.d script
    printf "\n [ \033[00;34m..\033[0m ] Installing NGINX init.d script\n\n"
    wget -O init-deb.sh http://library.linode.com/assets/1139-init-deb.sh
    wget -O init-deb.sh https://library.linode.com/assets/1139-init-deb.sh
    mv init-deb.sh /etc/init.d/nginx
    chmod +x /etc/init.d/nginx
    /usr/sbin/update-rc.d -f nginx defaults
  7. snooc revised this gist Jun 13, 2013. 1 changed file with 10 additions and 1 deletion.
    11 changes: 10 additions & 1 deletion setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -14,4 +14,13 @@ rbenv rehash
    # Install Nginx
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer -- MAKE SURE TO SET DIR TO /etc/nginx\n\n"
    apt-get -y install libcurl4-openssl-dev
    passenger-install-nginx-module
    passenger-install-nginx-module

    # Install nginx init.d script
    printf "\n [ \033[00;34m..\033[0m ] Installing NGINX init.d script\n\n"
    wget -O init-deb.sh http://library.linode.com/assets/1139-init-deb.sh
    mv init-deb.sh /etc/init.d/nginx
    chmod +x /etc/init.d/nginx
    /usr/sbin/update-rc.d -f nginx defaults

    service nginx restart
  8. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -12,6 +12,6 @@ gem install passenger
    rbenv rehash

    # Install Nginx
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n"
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer -- MAKE SURE TO SET DIR TO /etc/nginx\n\n"
    apt-get -y install libcurl4-openssl-dev
    passenger-install-nginx-module
  9. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -13,4 +13,5 @@ rbenv rehash

    # Install Nginx
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n"
    apt-get -y install libcurl4-openssl-dev
    passenger-install-nginx-module
  10. snooc revised this gist Jun 13, 2013. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -9,6 +9,8 @@
    printf "\n [ \033[00;34m..\033[0m ] Installing Passenger Gem\n\n"
    gem install passenger

    rbenv rehash

    # Install Nginx
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n"
    passenger-install-nginx-module
  11. snooc revised this gist Jun 13, 2013. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion setup_ruby.sh
    Original file line number Diff line number Diff line change
    @@ -54,4 +54,6 @@ echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc
    # Update system gems and install bundler
    printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n"
    gem update --system
    gem install bundler
    gem install bundler

    rbenv rehash
  12. snooc revised this gist Jun 13, 2013. 1 changed file with 14 additions and 0 deletions.
    14 changes: 14 additions & 0 deletions setup_app_server.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    #
    # This script assumes that ruby was installed using rbenv
    #
    # Run as root
    # $ bash <(curl -s [GIST URL])
    #

    # Install passenger gem
    printf "\n [ \033[00;34m..\033[0m ] Installing Passenger Gem\n\n"
    gem install passenger

    # Install Nginx
    printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n"
    passenger-install-nginx-module
  13. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion setup_ruby.sh
    Original file line number Diff line number Diff line change
    @@ -51,7 +51,7 @@ rbenv rehash
    rm -f $HOME/.gemrc
    echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc

    # Update system gems and install bundler
    printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n"

    gem update --system
    gem install bundler
  14. snooc revised this gist Jun 13, 2013. 1 changed file with 0 additions and 2 deletions.
    2 changes: 0 additions & 2 deletions setup_ruby.sh
    Original file line number Diff line number Diff line change
    @@ -51,8 +51,6 @@ rbenv rehash
    rm -f $HOME/.gemrc
    echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc

    exec $SHELL

    printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n"

    gem update --system
  15. snooc renamed this gist Jun 13, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  16. snooc revised this gist Jun 13, 2013. 1 changed file with 7 additions and 7 deletions.
    14 changes: 7 additions & 7 deletions setup.sh
    Original file line number Diff line number Diff line change
    @@ -11,17 +11,17 @@
    GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0-p195}

    # Install needed packages
    printf "\n [ \033[00;34m..\033[0m ] Updating System\n"
    printf "\n [ \033[00;34m..\033[0m ] Updating System\n\n"
    apt-get -y update
    printf "\n [ \033[00;34m..\033[0m ] Upgrading System\n"
    printf "\n [ \033[00;34m..\033[0m ] Upgrading System\n\n"
    apt-get -y upgrade
    printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n"
    printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n\n"
    apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \
    libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \
    autoconf libc6-dev ncurses-dev automake libtool bison vim

    # Install rbenv
    printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n"
    printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n\n"
    rm -rf /usr/local/rbenv
    git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv

    @@ -35,15 +35,15 @@ chmod +x /etc/profile.d/rbenv.sh
    source /etc/profile.d/rbenv.sh

    # Install ruby-build
    printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n"
    printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n\n"
    rm -rf /tmp/ruby-build
    pushd /tmp
    git clone git://github.com/sstephenson/ruby-build.git
    cd ruby-build
    ./install.sh
    popd

    printf "\n [ \033[00;34m..\033[0m ] Installing Ruby $GLOBAL_RUBY_VERSION\n"
    printf "\n [ \033[00;34m..\033[0m ] Installing Ruby $GLOBAL_RUBY_VERSION\n\n"
    rbenv install $GLOBAL_RUBY_VERSION
    rbenv global $GLOBAL_RUBY_VERSION
    rbenv rehash
    @@ -53,7 +53,7 @@ echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc

    exec $SHELL

    printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n"
    printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n"

    gem update --system
    gem install bundler
  17. snooc revised this gist Jun 13, 2013. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,7 @@
    #
    # WARNING: This script runs 'rm -rf' on most directories before installing. It will kill things.
    # ...Also, it takes awhile to compile ruby on resource starved machines. (O_o *Looks at 512MB droplet*)
    # ...Also, it takes awhile to compile ruby on resource starved machines.
    # (O_o *Looks at 512MB droplet*)
    #
    # Run as root
    # $ bash <(curl -s [GIST URL])
  18. snooc revised this gist Jun 13, 2013. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,6 @@
    #
    # WARNING: THIS SCRIPT RUNS 'rm -rf' on most directories before installing. It will kill things.
    # WARNING: This script runs 'rm -rf' on most directories before installing. It will kill things.
    # ...Also, it takes awhile to compile ruby on resource starved machines. (O_o *Looks at 512MB droplet*)
    #
    # Run as root
    # $ bash <(curl -s [GIST URL])
  19. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,7 @@
    #

    # CONFIGURATION VAIRABLES
    GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0p125}
    GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0-p195}

    # Install needed packages
    printf "\n [ \033[00;34m..\033[0m ] Updating System\n"
  20. snooc revised this gist Jun 13, 2013. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions setup.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,6 @@
    #
    # WARNING: THIS SCRIPT RUNS 'rm -rf' on most directories before installing. It will kill things.
    #
    # Run as root
    # $ bash <(curl -s [GIST URL])
    #
  21. snooc revised this gist Jun 13, 2013. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -38,7 +38,8 @@ pushd /tmp
    cd ruby-build
    ./install.sh
    popd


    printf "\n [ \033[00;34m..\033[0m ] Installing Ruby $GLOBAL_RUBY_VERSION\n"
    rbenv install $GLOBAL_RUBY_VERSION
    rbenv global $GLOBAL_RUBY_VERSION
    rbenv rehash
  22. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    #

    # CONFIGURATION VAIRABLES
    GLOBAL_RUBY_VERSION=${RUBY_VER:-2.0.0p125}
    GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0p125}

    # Install needed packages
    printf "\n [ \033[00;34m..\033[0m ] Updating System\n"
  23. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions setup.sh
    Original file line number Diff line number Diff line change
    @@ -32,6 +32,7 @@ source /etc/profile.d/rbenv.sh

    # Install ruby-build
    printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n"
    rm -rf /tmp/ruby-build
    pushd /tmp
    git clone git://github.com/sstephenson/ruby-build.git
    cd ruby-build
  24. snooc revised this gist Jun 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,7 @@ apt-get -y upgrade
    printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n"
    apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \
    libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \
    autoconf libc6-dev ncurses-dev automake libtool bison
    autoconf libc6-dev ncurses-dev automake libtool bison vim

    # Install rbenv
    printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n"
  25. snooc revised this gist Jun 13, 2013. 1 changed file with 11 additions and 8 deletions.
    19 changes: 11 additions & 8 deletions setup.sh
    Original file line number Diff line number Diff line change
    @@ -1,25 +1,27 @@
    #
    # Run as root
    # $ bash <(curl -s https://gist.github.com/snooc/3c149155455153435461/raw/f1cfe3477b5a0fa005f59baaa386349115fc720c/init.sh)
    # $ bash <(curl -s [GIST URL])
    #

    # CONFIGURATION VAIRABLES
    GLOBAL_RUBY_VERSION=${RUBY_VER:-2.0.0p125}

    # Install needed packages
    printf " [ \033[00;34m..\033[0m ] Updating System"
    printf "\n [ \033[00;34m..\033[0m ] Updating System\n"
    apt-get -y update
    printf " [ \033[00;34m..\033[0m ] Upgrading System"
    printf "\n [ \033[00;34m..\033[0m ] Upgrading System\n"
    apt-get -y upgrade
    printf " [ \033[00;34m..\033[0m ] Installing Needed Packages"
    printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n"
    apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \
    libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \
    autoconf libc6-dev ncurses-dev automake libtool bison

    # Install rbenv
    printf " [ \033[00;34m..\033[0m ] Installing RBENV"
    printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n"
    rm -rf /usr/local/rbenv
    git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv


    rm -f /usr/profile.d/rbenv.sh
    echo '# rbenv setup' > /etc/profile.d/rbenv.sh
    echo 'export RBENV_ROOT=/usr/local/rbenv' >> /etc/profile.d/rbenv.sh
    echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh
    @@ -29,7 +31,7 @@ chmod +x /etc/profile.d/rbenv.sh
    source /etc/profile.d/rbenv.sh

    # Install ruby-build
    printf " [ \033[00;34m..\033[0m ] Installing RUBY-BUILD"
    printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n"
    pushd /tmp
    git clone git://github.com/sstephenson/ruby-build.git
    cd ruby-build
    @@ -40,11 +42,12 @@ rbenv install $GLOBAL_RUBY_VERSION
    rbenv global $GLOBAL_RUBY_VERSION
    rbenv rehash

    rm -f $HOME/.gemrc
    echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc

    exec $SHELL

    printf " [ \033[00;34m..\033[0m ] Updating system gems and installing bundler"
    printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n"

    gem update --system
    gem install bundler
  26. snooc revised this gist Jun 13, 2013. 1 changed file with 50 additions and 1 deletion.
    51 changes: 50 additions & 1 deletion setup.sh
    Original file line number Diff line number Diff line change
    @@ -1 +1,50 @@
    ffff
    #
    # Run as root
    # $ bash <(curl -s https://gist.github.com/snooc/3c149155455153435461/raw/f1cfe3477b5a0fa005f59baaa386349115fc720c/init.sh)
    #

    # CONFIGURATION VAIRABLES
    GLOBAL_RUBY_VERSION=${RUBY_VER:-2.0.0p125}

    # Install needed packages
    printf " [ \033[00;34m..\033[0m ] Updating System"
    apt-get -y update
    printf " [ \033[00;34m..\033[0m ] Upgrading System"
    apt-get -y upgrade
    printf " [ \033[00;34m..\033[0m ] Installing Needed Packages"
    apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \
    libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \
    autoconf libc6-dev ncurses-dev automake libtool bison

    # Install rbenv
    printf " [ \033[00;34m..\033[0m ] Installing RBENV"
    git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv

    echo '# rbenv setup' > /etc/profile.d/rbenv.sh
    echo 'export RBENV_ROOT=/usr/local/rbenv' >> /etc/profile.d/rbenv.sh
    echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh
    echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh

    chmod +x /etc/profile.d/rbenv.sh
    source /etc/profile.d/rbenv.sh

    # Install ruby-build
    printf " [ \033[00;34m..\033[0m ] Installing RUBY-BUILD"
    pushd /tmp
    git clone git://github.com/sstephenson/ruby-build.git
    cd ruby-build
    ./install.sh
    popd

    rbenv install $GLOBAL_RUBY_VERSION
    rbenv global $GLOBAL_RUBY_VERSION
    rbenv rehash

    echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc

    exec $SHELL

    printf " [ \033[00;34m..\033[0m ] Updating system gems and installing bundler"

    gem update --system
    gem install bundler
  27. snooc created this gist Jun 13, 2013.
    1 change: 1 addition & 0 deletions setup.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    ffff