diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-04-08 18:42:03 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-04-08 18:42:03 +0000 |
commit | 3deb916aa0e417599959cd4ebb5871e445805121 (patch) | |
tree | 32a41b6a3c39afc081e9979271da21fdb1294800 /etc | |
parent | 995f499f42c95e6a534dadf203a8e6772a064ac1 (diff) | |
download | pfsense-3deb916aa0e417599959cd4ebb5871e445805121.zip pfsense-3deb916aa0e417599959cd4ebb5871e445805121.tar.gz |
Install RRD symlink if on correct platform
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -84,6 +84,12 @@ if [ ! -L /etc/syslog.conf ]; then fi # Repair symlinks if they are broken +if [ ! -L /usr/local/www/rrd ]; then + rm -rf /usr/local/www/rrd + ln -s /var/db/rrd /usr/local/www/rrd +fi + +# Repair symlinks if they are broken if [ ! -L /etc/hosts ]; then rm -rf /etc/hosts ln -s /var/etc/hosts /etc/hosts |