Skip to content

Instantly share code, notes, and snippets.

View sourceperl's full-sized avatar

l.lefebvre sourceperl

  • Hauts-de-France
View GitHub Profile
@sourceperl
sourceperl / thingspeak-install.sh
Last active December 7, 2016 19:24 — forked from abythell/thingspeak-install.sh
Bash script to install a Thingspeak server on Debian Jessie
#!/bin/bash
# Automatic install of Thingspeak server on Debian jessie
# Updated to use ruby 2.1.4
## check root level
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi