diff options
author | rotondo <none@none> | 2006-06-22 11:23:51 -0700 |
---|---|---|
committer | rotondo <none@none> | 2006-06-22 11:23:51 -0700 |
commit | b90522726c84b42c3323e8185bf6c04a6f697764 (patch) | |
tree | 4f7a2f52f0f08d19ca7ed68a868732594e8a0b5b /usr/src | |
parent | 54d9a2593fde02a00a43f74dbbc438402369fd6a (diff) | |
download | illumos-joyent-b90522726c84b42c3323e8185bf6c04a6f697764.tar.gz |
6440717 inetd services may not be enabled by netservices open
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/cmd/svc/shell/netservices.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr/src/cmd/svc/shell/netservices.sh b/usr/src/cmd/svc/shell/netservices.sh index a7f55bdd6a..49e8cd56da 100644 --- a/usr/src/cmd/svc/shell/netservices.sh +++ b/usr/src/cmd/svc/shell/netservices.sh @@ -258,6 +258,11 @@ set_smcwbem $keyword # ln -sf ./$profile /var/svc/profile/generic.xml svccfg apply /var/svc/profile/generic.xml +if [ $profile = "generic_open.xml" ] +then + # generic_open may not start inetd services on upgraded systems + svccfg apply /var/svc/profile/inetd_generic.xml +fi # # Make the services aware of the new property values |