Index: /trunk/src/grails-app/conf/BootStrap.groovy
===================================================================
--- /trunk/src/grails-app/conf/BootStrap.groovy	(revision 101)
+++ /trunk/src/grails-app/conf/BootStrap.groovy	(revision 102)
@@ -63,5 +63,5 @@
         def authInstance
 
-        authInstance = new Authority(description:"Application Admin, grants full admin access to the application.",
+        authInstance = new Authority(description:"Application Admin, not required for daily use! Grants full admin access to the application.",
                                         authority:"ROLE_AppAdmin")
         BootStrapSaveAndTest(authInstance)
@@ -80,4 +80,5 @@
         def personInstance
 
+        //Person #1
         personInstance = new Person(loginName:"admin",
                                     firstName:"Admin",
@@ -92,4 +93,5 @@
         personInstance.addToPersonGroups(PersonGroup.findByName("gnuMims"))
 
+        //Person #2
         personInstance = new Person(loginName:"manager",
                                     firstName:"Meca",
@@ -103,7 +105,8 @@
         personInstance.addToPersonGroups(PersonGroup.findByName("gnuMims"))
 
+        //Person #3
         personInstance = new Person(loginName:"user",
                                     firstName:"Demo",
-                                    lastName:"Danza",
+                                    lastName:"User",
                                     pass:passClearText,
                                     password:passwordEncoded,
@@ -113,7 +116,8 @@
         personInstance.addToPersonGroups(PersonGroup.findByName("Electrical"))
 
+        //Person #4
         personInstance = new Person(loginName:"craig",
                                     firstName:"Craig",
-                                    lastName:"SuperTech",
+                                    lastName:"SuperSparky",
                                     pass:passClearText,
                                     password:passwordEncoded,
@@ -123,7 +127,8 @@
         personInstance.addToPersonGroups(PersonGroup.findByName("Electrical"))
 
+        //Person #5
         personInstance = new Person(loginName:"john",
                                     firstName:"John",
-                                    lastName:"Samples",
+                                    lastName:"SuperFitter",
                                     pass:passClearText,
                                     password:passwordEncoded,
@@ -133,4 +138,5 @@
         personInstance.addToPersonGroups(PersonGroup.findByName("Mechanical"))
 
+        //Person #6
         personInstance = new Person(loginName:"mann",
                                     firstName:"Production",
@@ -220,6 +226,6 @@
                  taskPriority:TaskPriority.get(2),
                  taskType:TaskType.get(1),
-                 leadPerson:Person.get(3),
-                 description:"Some follow up work",
+                 leadPerson:Person.get(5),
+                 description:"Some follow-up work",
                  comment:"Some help required")
         BootStrapSaveAndTest(subTaskInstance)
@@ -233,5 +239,5 @@
                  taskPriority:TaskPriority.get(2),
                  taskType:TaskType.get(1),
-                 leadPerson:Person.get(3),
+                 leadPerson:Person.get(4),
                  description:"Replace sensor at next opportunity.",
                  comment:"Nothing else has worked.")
@@ -246,5 +252,5 @@
                  taskPriority:TaskPriority.get(2),
                  taskType:TaskType.get(5),
-                 leadPerson:Person.get(5),
+                 leadPerson:Person.get(6),
                  description:"Production Report",
                  comment:"Production report for specific production run or shift")
