Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../.././../lib/svc/method/net-ipmgmt
Real path: /lib/svc/method/net-ipmgmt
Zurück
#!/sbin/sh # # Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved. # # This daemon stores address object to logical interface number mappings # (among other things) and reads/writes from/to ipmgmtd data store. # . /lib/svc/share/smf_include.sh if [ -z "$SMF_FMRI" ]; then echo "this script can only be invoked by smf(7)" exit $SMF_EXIT_ERR_NOSMF fi case "$1" in 'start') # # network/ip-interface-management:default service is always # enabled by default. When the non-global shared-IP stack # zone boots, it tries to bring up this service as well. In # that case, we would like to use smf_method_exit() to notify # the SMF infrastructure that there are no running processes # associated with this online, non-transient service. However, # smf_method_exit() does not exist in smf_include.sh in an # S10C zone. # if smf_dont_configure_ip; then (while true ; do sleep 3600 ; done) & exit $SMF_EXIT_OK fi # # We must be now in a global zone or non-global zone with # exclusive-IP stack. Start the ipmgmtd daemon. # if /lib/inet/ipmgmtd ; then exit $SMF_EXIT_OK else exit $SMF_EXIT_ERR_FATAL fi ;; esac