/[health_html]/fix.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /fix.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by ravilov, Wed Aug 8 12:58:08 2001 UTC revision 1.3 by ravilov, Fri Aug 10 14:00:26 2001 UTC
# Line 8  do Line 8  do
8          chmod 777 "${i}"          chmod 777 "${i}"
9  done  done
10  echo " done."  echo " done."
11    LINKS="`cat <<EOF
12    . edit
13    temp.tpl templates/d_s.tpl
14    conditions.tpl templates/lifestyle.tpl
15    pgConditions.php inc/pgLifestyle.php
16    EOF
17    `"
18  echo -n "Creating symlinks:"  echo -n "Creating symlinks:"
19  if [ ! -e "templates/d_s.tpl" ]  echo "${LINKS}" | while read line
20  then  do
21          echo -n " [templates/d_s.tpl]"          set -- ${line}
22          ln -s temp.tpl templates/d_s.tpl          [ -e "${2}" ] && continue
23  fi          echo -n " [${2}]"
24  if [ ! -e "templates/lifestyle.tpl" ]          ln -s "${1}" "${2}"
25  then  done
         echo -n " [templates/lifestyle.tpl]"  
         ln -s conditions.tpl templates/lifestyle.tpl  
 fi  
 if [ ! -e "inc/pgLifestyle.php" ]  
 then  
         echo -n " [inc/pgLifestyle.php]"  
         ln -s pgConditions.php inc/pgLifestyle.php  
 fi  
26  echo " done."  echo " done."
27  exit "${?}"  exit "${?}"

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.26