diff options
author | ivan <ivan> | 2006-12-15 00:28:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-12-15 00:28:46 +0000 |
commit | 1163d4d5044ca487ae9cf2176346e297979aa1e1 (patch) | |
tree | a819c88eb837ea6349de06df955f9c19ecf88459 /FS/bin/freeside-addoutsource | |
parent | 7422aa77086326ba1e6032150ce5704d1003ea6f (diff) |
tiny bit of cleanup from the conf merge
Diffstat (limited to 'FS/bin/freeside-addoutsource')
-rw-r--r-- | FS/bin/freeside-addoutsource | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/FS/bin/freeside-addoutsource b/FS/bin/freeside-addoutsource index 8291c6434..9cb12195a 100644 --- a/FS/bin/freeside-addoutsource +++ b/FS/bin/freeside-addoutsource @@ -3,6 +3,8 @@ domain=$1 FREESIDE_CONF=%%%FREESIDE_CONF%%% +FREESIDE_CACHE=%%%FREESIDE_CACHE%%% +FREESIDE_EXPORT=%%%FREESIDE_EXPORT%%% #without this, [a-z]* matches CVS/, the copy doesn't return a sucessful error # status, and the rest of the commands aren't run @@ -24,7 +26,7 @@ chmod 600 $FREESIDE_CONF/conf.DBI:Pg:dbname=$domain/secrets && \ \ echo -e "DBI:Pg:dbname=$domain\nfreeside\n" >$FREESIDE_CONF/conf.DBI:Pg:dbname=$domain/secrets && \ \ -mkdir $FREESIDE_CONF/counters.DBI:Pg:dbname=$domain && \ -mkdir $FREESIDE_CONF/cache.DBI:Pg:dbname=$domain && \ -mkdir $FREESIDE_CONF/export.DBI:Pg:dbname=$domain +mkdir $FREESIDE_CACHE/counters.DBI:Pg:dbname=$domain && \ +mkdir $FREESIDE_CACHE/cache.DBI:Pg:dbname=$domain && \ +mkdir $FREESIDE_EXPORT/export.DBI:Pg:dbname=$domain |