Skip to content

Instantly share code, notes, and snippets.

View landis's full-sized avatar

James Landritsi landis

  • Philadelphia, PA
View GitHub Profile
@landis
landis / archgitlab.sh
Created August 11, 2012 01:19 — forked from axilleas/archgitlab.sh
Install Gitlab on Archlnux
#!/bin/bash
##########################
## Check if run as root ##
##########################
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi