added back in sourcing of functions.sh where date_stringer is needed.
authorFred T. Hamster <fred@wolfe.gruntose.blurgh>
Tue, 31 Jan 2012 01:58:19 +0000 (20:58 -0500)
committerFred T. Hamster <fred@wolfe.gruntose.blurgh>
Tue, 31 Jan 2012 01:58:19 +0000 (20:58 -0500)
scripts/buildor/stdbuild.sh
scripts/core/create_tempdir.sh
scripts/core/i.sh
scripts/database/backup_mysql_dbs.sh
scripts/files/find_bad_protection.sh
scripts/opensim/backup_opensim.sh
scripts/opensim/backup_osgrid.sh
scripts/system/osx_cd_mounter.sh
scripts/tty/keep_awake_process.sh
scripts/tty/lockup.sh
scripts/users/byejob.sh

index a9fb23cc4e090da6847c894c61d020f722545f90..a084d3b1fd8dbeb91a641358dc3ec3da137f7435 100644 (file)
@@ -5,6 +5,8 @@
 #
 # go to the main folder of the project you're building before you run this.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 echo "$(date_stringer)"
 echo "Building application from $(\pwd)"
 echo "    via standard 'configure;make;sudo make install' process..."
index 55899274889144cd1a771bbaec30bfde468af3fc..9cbb89f9817d94d9eb147c6b5c27521c04b37937 100644 (file)
@@ -7,6 +7,8 @@
 
 if [ ! -z "$SHELL_DEBUG" ]; then echo creating temporary directory...; fi
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 if [ -z "$TMP" ]; then
   export TMP=$HOME/.tmp
     # main declaration of the transients area.
index 865c5b142956635460794fc7a9c596e6ed83f2cc..7c174b7f765e9e9e106851bbe0c9a244ed8528e9 100644 (file)
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 (
 echo '###############################################################################'
 echo
index 551da0f71f789a302617944de8b261f28cb86806..c9bbab239c0f8ce15b1d8d9c08b1bd614dc6a968 100644 (file)
@@ -1,4 +1,6 @@
 #!/bin/bash
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 temphost=$(hostname | sed -e 's/\([^.]*\)\..*/\1/')
 tar -czf /z/stuffing/archives/backup_dbs_${temphost}_$(date_stringer).tar.gz /home/archives/mysql_dbs/*
index df9eb11de4cd42c6124461c75c3bfb00aae36fcc..b9add8fc1ba49bd2b591cd7c18a6156e748cddae 100644 (file)
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 bad_file="$HOME/bad_protections.txt"
 if [ $# = 0 ]; then dirname=$HOME; export dirname;
 else dirname=$1; export dirname; fi
index e431ade0401496a27e6a9d4ecfe75897b25fe2cf..364e195519ac139fcfd8a09e589b9bc57ec05850 100644 (file)
@@ -1,6 +1,8 @@
 #!/bin/bash
 # a simple script that backs up the opensim database assets.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/')
 
 bkupname=opensim_bkup_${host}_$(date_stringer).mysql_bkup
index 4e14399a91d43f9eec87690fc995bc0ba48c42ba..c77b3be5f14f7bddfd8c06d6b4187775923c7d7d 100644 (file)
@@ -1,6 +1,8 @@
 #!/bin/bash
 # a simple script that backs up the opensim database assets.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/')
 
 bkupname=osgrid_bkup_${host}_$(date_stringer).mysql_bkup
index 531399bd5a438454383d8b7764e7101edb88a82d..a1d522c02aee082fa869ccf2097370d59306834e 100644 (file)
@@ -3,6 +3,8 @@
 # keeps trying to mount the cd on a mac mini to overcome
 # a new bug in itunes seen as of osx leopard upgrade.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 mountpoint=/Volumes/mounty_cd
 
 echo "$(date_stringer): starting cd mounter..."
index 4c31a2ab58c119711658330d656626b2d7f76ed2..29a68de4ba48a56759c0d0d34065477c0c1afd91 100644 (file)
@@ -2,6 +2,8 @@
 # This program is meant to be started by the program keep_awake and has
 # the basic guts that are meant to execute inside of a semi-perpetual loop.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 # save the process id for the goodbye program to deal with.
 #echo $$ >>$TMP/trash.last_keep_awake_process
 #don't let the shutdown guy know who we are; we want to keep running now.
index 4ad330b3207e8560633bc121ee8cac508028d304..ec60e92f8f79d14c354f4dca5bda39e91586b870 100644 (file)
@@ -2,6 +2,8 @@
 
 # Thanks to Kevin Wika for this shell.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 trap '' HUP
 trap '' INT
 trap '' QUIT
index 196a35416504ff5236d32334e33c55a175686846..e97e079bd414f7e99c9a155d8afbc3fcccd3912b 100644 (file)
@@ -2,6 +2,8 @@
 
 # this program is run in the background to show a bye message on the console.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 export LIGHTWEIGHT_INIT=true  # make sure we just get our variables.
 source $HOME/yeti/scripts/launch_feisty_meow.sh
 export host=$(hostname)