From 3f251a99d5afaa6195bd39caeca4ae964735eeb8 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 16 Feb 2008 10:41:42 +0000 Subject: [PATCH] install ftok file for tables --- INSTALL.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/INSTALL.sh b/INSTALL.sh index 1258a0a..817da82 100755 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -125,8 +125,15 @@ if [ "$web_only" = "FALSE" ]; then rm $ftok_path/spy.txt # create the fs subtree to enable ftok-ing + if [ ! -d ${ftok_path} ]; then + mkdir ${ftok_path} + fi touch ${ftok_path}/main chmod 666 ${ftok_path}/main + for i in `seq 1 100`; do + touch ${ftok_path}/table$i + chmod 666 ${ftok_path}/table$i + done fi install -d $web_path for i in `find web -type d | grep -v /CVS | sed 's/^....//g'`; do -- 2.17.1