Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../././../lib/svc/method/devices-local
Real path: /lib/svc/method/devices-local
Zurück
#!/usr/sbin/sh # # Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved. # # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T. # All rights reserved. # # Initiate the device reconfiguration process in case we need some # device links established so that we can successfully perform our # remaining standard mounts. . /lib/svc/share/smf_include.sh . /lib/svc/share/fs_include.sh . /lib/svc/share/reboot_include.sh smf_is_globalzone || exit $SMF_EXIT_OK if is_reconfigure_boot; then echo 'Configuring devices.' > /dev/msglog 2>&1 /usr/sbin/devfsadm >/dev/msglog 2>&1 # # Refresh the socket-config service to configure sockets # that use /dev entries that were just created by devfsadm. # /usr/sbin/svcadm refresh network/socket-config:default # # Update kernel driver.conf cache. # /usr/sbin/devfsadm -I # # If this is the first boot of a cloned or moved boot device, the pool # configuration may not point to the proper logical path and/or devid. # Trigger an update. # /usr/sbin/zpool status >/dev/null 2>&1 fi # Establish the default framebuffer name. fbdev=`/usr/sbin/prtconf -F 2>/dev/null` if [ $? -eq 0 ]; then set -- /devices$fbdev* if [ -c $1 ]; then if [ -h /dev/fb ]; then fblink=`ls -l /dev/fb | /usr/bin/awk '{ print $11 }'` if [ "$1" != "$fblink" ]; then rm -f /dev/fb ln -s $1 /dev/fb fi else rm -f /dev/fb ln -s $1 /dev/fb fi fi fi # bootadm update-archive will fail when boot pool changes. We deal # with that now by doing devfsadm and a reboot which will do the # bootadm update-all if [ ! -f $SMF_SYSVOL_FS/boot_archive_need_devfsadm ] ; then exit $SMF_EXIT_OK fi /usr/sbin/devfsadm >/dev/msglog 2>&1 rm -f $SMF_SYSVOL_FS/boot_archive_need_devfsadm MSGWILLREBOOT="\ An inconsistency in the boot archive was detected.\n\ The boot archive will be updated, then the system will reboot." MSGREQUIREREBOOT="\ WARNING: Reboot required.\n\ The system has updated the boot archive.\n\ To avoid booting and running the system with the previously out-of-sync\n\ version of this file, reboot the system from the same device that was\n\ previously booted." system_reboot "$MSGWILLREBOOT" "$MSGREQUIREREBOOT" exit $SMF_EXIT_ERR_FATAL