From af0bc60e0086454ff5f4a27d3258a3fecf8ade82 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 2 Dec 2014 10:40:03 +0000 Subject: [PATCH] added fn_rootcheck --- functions/fn_rootcheck | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 functions/fn_rootcheck diff --git a/functions/fn_rootcheck b/functions/fn_rootcheck new file mode 100644 index 000000000..ca3f7d3e2 --- /dev/null +++ b/functions/fn_rootcheck @@ -0,0 +1,10 @@ +#!/bin/bash +# LGSM fn_rootcheck function +# Author: Daniel Gibbs +# Website: http://danielgibbs.co.uk +# Version: 011214 + +if [ $(whoami) = "root" ]; then + fn_printfailnl "Script will not run as root!" + exit +fi \ No newline at end of file