Server IP : 15.235.198.142 / Your IP : 216.73.216.36 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/initramfs-tools/scripts/local-bottom/ |
Upload File : |
#!/bin/sh # If iscsiuio is present in the initramfs, and it was started by us, # stop it again so the system iscsiuio can take over later. if [ -x /usr/sbin/iscsiuio ] && [ -e /run/initramfs/iscsiuio.pid ] ; then start-stop-daemon --stop --quiet --retry=TERM/10/KILL/5 \ --pidfile /run/initramfs/iscsiuio.pid \ --name iscsiuio --exec /usr/sbin/iscsiuio || : fi # Remove the interface file if no disks are present if [ -f /run/initramfs/open-iscsi.interface ] ; then found=0 for disk in /dev/disk/by-path/*-iscsi-*; do if [ ! -e "$disk" ] ; then # If we have no matches, we stil go through the for loop once with # the pattern as a string continue fi if ! readlink -f "$disk" > /dev/null ; then continue fi found=1 break; done if [ $found = 0 ] ; then rm /run/initramfs/open-iscsi.interface fi fi exit 0