summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xetc/rc7
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index 66ce433..f128941 100755
--- a/etc/rc
+++ b/etc/rc
@@ -56,8 +56,11 @@ if [ ! "$PLATFORM" = "cdrom" ] ; then
# If /conf is a directory, convert it to a symlink
# to /cf/conf
if [ -d "/conf" ]; then
- rm -rf /conf
- ln -s /cf/conf /conf
+ # If item is not a symlink then rm and recreate
+ if ! test -L /conf; then
+ rm -rf /conf
+ ln -s /cf/conf /conf
+ fi
fi
fi
OpenPOWER on IntegriCloud