new alias for building xsede code, new fortune.
authorChris Koeritz <fred@gruntose.com>
Tue, 17 Dec 2013 20:26:11 +0000 (15:26 -0500)
committerChris Koeritz <fred@gruntose.com>
Tue, 17 Dec 2013 20:26:11 +0000 (15:26 -0500)
infobase/fortunes.dat
scripts/buildor/build_xsedes.sh

index b2409a80ce36b7ab94e8408b11cd7b8e451d59b8..643c2ed2d82dbe5e27dddf7824e6feac2f5acd70 100644 (file)
@@ -39779,3 +39779,26 @@ in your mind that is full of grasping, clinging, and attachment.
      Experts on Buddhism, Psychology, and Medicine Explore the Health Benefits
      of Contemplative Practice", edited by Andy Fraser, published by Shambhala
      Publications and Snow Lion Publications.
+~
+  According to Sthiramati, though samsara has the nature of nirvana, in
+ordinary beings true reality is obscured by their tendencies of clinging to a
+self and really existing phenomena.  Thus, they do not see emptiness, which
+actually exists, but they naturally perceive the actually nonexistent
+phenomena of apprehender and apprehended, just as when mistakenly not seeing
+an existent rope, but seeing it as a nonexistent snake.
+  Bodhisattvas lack the clinging to a self and phenomena and thus they
+naturally see true reality—emptiness—while not seeing any duality, just as
+correctly seeing an existent rope, while not seeing it as a nonexistent snake.
+When existent emptiness—true reality—is seen and the nonexistent
+characteristics of apprehender and apprehended are not seen anymore, the
+alaya-consciousness—the dependent nature—has undergone the fundamental
+change.  This fundamental change is liberation and nirvana.
+  Just as people liberated from bondage can do what they please, once this
+fundamental change occurs, bodhisattvas are liberated because they have gained
+mastery over their minds, which abide like space without any appearance of
+characteristics.  Thus, no matter what they encounter, they are able to act as
+they please without being bound by any attachment or aversion.
+  -- Karl Brunnhölzl, from "Mining for Wisdom within Delusion: Maitreya’s
+     Distinction between Phenomena and the Nature of Phenomena and Its Indian
+     and Tibetan Commentaries", published by Shambhala Publications and Snow
+     Lion Publications
index 659965ec7b78ec5289cb11e53867e3c9d4e2f40d..806d8ad7e8ac338584d01ab18e23d0bf725cb88f 100644 (file)
@@ -15,13 +15,8 @@ function build_xsede()
   if [ $? -ne 0 ]; then return 1; fi
   echo "Build starting at: $(date)"
 
-# clean up some things.
-#maybe not needed.
-if [ ! -d unit-test-reports ]; then
-echo this chunk in build_xsedes could be removed to clean up unit tests
-else
-\rm -rf unit-test-reports
-fi
+  # clean up some things.
+  \rm -rf unit-test-reports
 
   # build the trunk.
   ant -Dbuild.targetArch=64 build
@@ -40,6 +35,7 @@ function rebuild_xsede()
   fi
   pushd $GENII_INSTALL_DIR
   ant clean
+
   if [ $? -ne 0 ]; then return 1; fi
   popd
   build_xsede
@@ -57,6 +53,18 @@ function rebu_bootstrap()
   success_sound  
 }
 
+# a shortcut for building without a clean, and creating a bootstrap container with the code.
+function bu_bootstrap()
+{
+  build_xsede 
+  if [ $? -ne 0 ]; then echo "failed to rebuild xsede code"; return 1; fi
+
+  bash $GENII_INSTALL_DIR/xsede_tools/library/bootstrap_quick_start.sh
+  if [ $? -ne 0 ]; then echo "failed to bootstrap a container"; return 1; fi
+
+  success_sound  
+}
+
 # a shortcut for doing a quick build and then creating an installer.
 function fast_install_build()
 {