Changeset 1405 for feedmelinks/bin/configure.sh
- Timestamp:
- 03/10/07 11:25:40 (2 years ago)
- Files:
-
- feedmelinks/bin/configure.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/bin/configure.sh
r1354 r1405 54 54 echo $domain > $root/_config/domain.txt 55 55 56 echo "3. Saving your configurations in env.inc.php (for siteapplication to read)"56 echo "3. Saving your configurations in env.inc.php (for the main application to read)" 57 57 xsltproc --$sp server-name $s --$sp mode php $xsl $xml > $root/modules/env.inc.php 58 58 … … 60 60 xsltproc --$sp server-name $s --$sp mode sh $xsl $xml > $root/bin/env.sh 61 61 62 echo "5. ...and as a perl module s format (for other maintenance scripts to read)..."62 echo "5. ...and as a perl module (for things like the AIM bot and the add-link from email script)..." 63 63 cp $root/lib/FeedMeLinks/Environment-template.pm $root/lib/FeedMeLinks/Environment.pm 64 64 xsltproc --$sp server-name $s --$sp mode perl $xsl $xml >> $root/lib/FeedMeLinks/Environment.pm 65 65 66 echo 6. FIXME: need to ALSO build a crontab file with the correct paths 66 echo "6. ...and as a crontab so that all the background processes will run at the correct times with the correct permissions" 67 crontab="$root/_config/crontab.INSTALL_ME" 68 xsltproc --$sp server-name $s --$sp mode crontab $xsl $xml > $crontab 69 echo >> $crontab 70 echo "# to edit, change $root/_config/crontab-template.txt" >> $crontab 71 cat $root/_config/crontab-template.txt >> $crontab 72 73 echo "don't forget to install your new crontab in $crontab (copy, crontab -e, paste, save, done!)" 67 74 68 75 exit 0