Skip to content

Instantly share code, notes, and snippets.

@0x46616c6b
Created January 4, 2013 19:49
Show Gist options
  • Save 0x46616c6b/4455350 to your computer and use it in GitHub Desktop.
Save 0x46616c6b/4455350 to your computer and use it in GitHub Desktop.
simple script to start a small webserver for munin
!/bin/bash
die () {
echo >&2 "$@"
exit 1
}
[ $EUID -eq 0 ] || die "this script must be run as root"
cd /var/cache/munin/www
python -m SimpleHTTPServer 80 > /dev/null 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment