summaryrefslogtreecommitdiff
path: root/src/scripts/01init.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/01init.sh')
-rw-r--r--src/scripts/01init.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/scripts/01init.sh b/src/scripts/01init.sh
deleted file mode 100644
index 6947f6f..0000000
--- a/src/scripts/01init.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# make-live - utility to build Debian Live systems
-#
-# Copyright (C) 2006 Daniel Baumann <daniel@debian.org>
-# Copyright (C) 2006 Marco Amadori <marco.amadori@gmail.com>
-#
-# make-live comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
-# This is free software, and you are welcome to redistribute it
-# under certain conditions; see COPYING for details.
-
-Init ()
-{
- # Check if user is root
- if [ "`id -u`" -ne "0" ]
- then
- echo "E: ${PROGRAM} requires superuser privilege."
- exit 1
- fi
-}