summaryrefslogtreecommitdiff
path: root/src/core/libs/lib-misc.sh
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-02-22 17:48:13 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2009-02-22 17:48:13 +0100
commitfb96730dbfd801c45bc2009c1960d30403ecabc1 (patch)
treed630d8a527d627db1e971d0474c5132f16db27d5 /src/core/libs/lib-misc.sh
parentf4bd7c36b44da0c9a5985868aa8b0183cd4414c8 (diff)
since we use /tmp now, no more need to hide files. some categorizing (tagging) of files is useful though
Diffstat (limited to 'src/core/libs/lib-misc.sh')
-rw-r--r--src/core/libs/lib-misc.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/libs/lib-misc.sh b/src/core/libs/lib-misc.sh
index 01c291f..c7a5d2f 100644
--- a/src/core/libs/lib-misc.sh
+++ b/src/core/libs/lib-misc.sh
@@ -14,7 +14,7 @@ run_background ()
debug "run_background called. identifier: $1, command: $2, logfile: $3"
( \
- touch $RUNTIME_DIR/.$1-running
+ touch $RUNTIME_DIR/aif-$1-running
debug "run_background starting $1: $2 >>$3 2>&1"
[ -f $3 ] && echo -e "\n\n\n" >>$3
echo "STARTING $1 . Executing $2 >>$3 2>&1\n" >> $3;
@@ -23,7 +23,7 @@ run_background ()
read $var_exit <<< $? #TODO: bash complains about 'not a valid identifier'
debug "run_background done with $1: exitcode (\$$1_exitcode): "${!var_exit}" .Logfile $3" #TODO ${!var_exit} doesn't show anything --> maybe fixed now
echo >> $3
- rm -f $RUNTIME_DIR/.$1-running
+ rm -f $RUNTIME_DIR/aif-$1-running
) &
sleep 2
@@ -36,7 +36,7 @@ wait_for ()
{
[ -z "$1" ] && die_error "wait_for needs an identifier to known on which command to wait!"
- while [ -f $RUNTIME_DIR/.$1-running ]
+ while [ -f $RUNTIME_DIR/aif-$1-running ]
do
#TODO: follow_progress dialog mode = nonblocking (so check and sleep is good), cli mode (tail -f )= blocking? (so check is probably not needed as it will be done)
sleep 1
@@ -66,5 +66,5 @@ check_is_in ()
cleanup_runtime ()
{
mkdir -p $RUNTIME_DIR || die_error "Cannot create $RUNTIME_DIR"
- rm -rf $RUNTIME_DIR/.dia* &>/dev/null
+ rm -rf $RUNTIME_DIR/aif-dia* &>/dev/null
}