Skip to content

Instantly share code, notes, and snippets.

View touv's full-sized avatar

Nicolas Thouvenin touv

View GitHub Profile
@touv
touv / app
Created October 28, 2011 08:16
LSB launcher for express of nodejs
#! /bin/sh
# ------------------------------------------------------------------------------
# SOME INFOS : fairly standard (debian) init script.
# Note that node doesn't create a PID file (hence --make-pidfile)
# has to be run in the background (hence --background)
# and NOT as root (hence --chuid)
#
# MORE INFOS : INIT SCRIPT http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit
# INIT-INFO RULES http://wiki.debian.org/LSBInitScripts
# INSTALL/REMOVE http://www.debian-administration.org/articles/28
@touv
touv / nodejs-install.sh
Created August 31, 2011 10:04
Installing NODEJS in HOME Directory with STOW
#!/bin/sh
#Installing NODEJS in HOME Directory with STOW
export NODEJS_VERSION=0.4.11
mkdir -p ~/local/lib/node_modules
cd ~/local/src
curl http://nodejs.org/dist/node-v${NODEJS_VERSION}.tar.gz | tar -xzf -
cd ~/local/src/node-v${NODEJS_VERSION}
@touv
touv / stow-install.sh
Created August 31, 2011 10:01
Installing STOW in HOME Directory
#!/bin/sh
# Installing STOW in HOME Directory
export STOW_VERSION=1.3.3
mkdir ~/local/stow
mkdir -p ~/local/src
mkdir ~/local/bin
mkdir ~/local/info
mkdir ~/local/etc
cat /dev/urandom | od -A n -t x -N 4 -w | tr -d ' '