#!/bin/bash
#
# by: Forrest (20101203)
#
# Setup script for the nautilus lab
# this script is to be installed and run on desktopX.example.com
# output is logged to syslog

# Set environment and declare global variables
. /usr/local/lib/labtool.shlib
trap on_exit EXIT

DEBUG=false
ERROR_MESSAGE="Error running script. Contact your instructor if you continue to see this message."
PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin
userInput="no"
set -o pipefail

# Check to make sure we are running as root
check_root

# Check to make sure we are running on the correct host
check_host "desktop"

# Configure files for student
touch /home/student/original1.txt
touch /home/student/original2.txt
touch /home/student/original3.txt
touch /home/student/original5.txt
touch /home/student/original8.txt
touch /home/student/original9.txt
mkdir -p /home/student/originaldir

echo "done!"

exit 0
