diff options
author | Andrew Thompson <andrew@clonedev.co.nz> | 2011-08-17 14:15:18 +1200 |
---|---|---|
committer | Andrew Thompson <andrew@clonedev.co.nz> | 2011-08-17 14:15:18 +1200 |
commit | 7734aea648d609bbdf308d97f85d7d089c831d6f (patch) | |
tree | 44b364f02f771f54a5350c226459886068a3361a /etc/rc.initial | |
parent | 8f9bffbc987a072b7d266011396726489ed92450 (diff) | |
download | pfsense-7734aea648d609bbdf308d97f85d7d089c831d6f.zip pfsense-7734aea648d609bbdf308d97f85d7d089c831d6f.tar.gz |
Make initial changes to allow pfSense to work in a jail.
This mostly avoids starting things that will not work and gets the
initial config. Most of the pfSense functionality will not work
(pf rules, routing, etc) but it can be used for testing.
Diffstat (limited to 'etc/rc.initial')
-rwxr-xr-x | etc/rc.initial | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/rc.initial b/etc/rc.initial index 9f2de7a..ef636b4 100755 --- a/etc/rc.initial +++ b/etc/rc.initial @@ -44,6 +44,10 @@ WORD="https" # Set our operating platform PLATFORM=`cat /etc/platform` +if [ "$PLATFORM" = "jail" ]; then + exit +fi + # endless loop while : ; do |