summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-05-05 19:51:26 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-05-05 19:51:26 +0000
commitd53c2f85736aa8d8de25b4e3821be0c68352d707 (patch)
tree53b50f3a2463dd5833d33098988c84a3c64aecf3
parent92ffa1cfe3208477e1dd15a839ebca16a4c9d4ce (diff)
downloadpfsense-d53c2f85736aa8d8de25b4e3821be0c68352d707.zip
pfsense-d53c2f85736aa8d8de25b4e3821be0c68352d707.tar.gz
Remove unncessary if
-rwxr-xr-xetc/rc8
1 files changed, 3 insertions, 5 deletions
diff --git a/etc/rc b/etc/rc
index dd1ab03..9b65537 100755
--- a/etc/rc
+++ b/etc/rc
@@ -91,11 +91,9 @@ echo Done.
echo "Executing rc.d items..."
for FILE in /usr/local/etc/rc.d/*.sh; do
- if [ -f $FILE ]; then
- echo -n " Starting ${FILE}..."
- sh $FILE >>/tmp/bootup_messages 2>&1
- echo "Done."
- fi
+ echo -n " Starting ${FILE}..."
+ sh $FILE >>/tmp/bootup_messages 2>&1
+ echo "Done."
done
if -e [ /tmp/filter_boot_dirty ]; then
OpenPOWER on IntegriCloud