|
Server IP : 80.80.81.74 / Your IP : 80.80.80.28 Web Server : Apache/2.4.37 (Oracle Linux Server) System : Linux ust-wp4-prod 5.15.0-310.184.5.2.el8uek.x86_64 #2 SMP Wed Jul 9 16:08:33 PDT 2025 x86_64 User : apache ( 48) PHP Version : 8.4.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0555) : /sbin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
#!/bin/bash # # Copyright (C) 2022 Oracle. All rights reserved. # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation, version 2. This program is distributed in the hope that it will # be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General # Public License for more details. You should have received a copy of the GNU # General Public License along with this program; if not, write to the Free # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 021110-1307, USA. # Boot volume startup has to be "onboot" and not "automatic" # Setting it to automatic will cause shutdown/reboot failure echo "#########################################################################" echo -n "Before: " iscsiadm -m node -T iqn.2015-02.oracle.boot:uefi -o show | grep node.startup echo "Setting iSCSI boot volume startup type to be onboot" iscsiadm -m node -T iqn.2015-02.oracle.boot:uefi -p 169.254.0.2:3260 -o update -n node.startup -v onboot echo -n "After: " iscsiadm -m node -T iqn.2015-02.oracle.boot:uefi -o show | grep node.startup echo "#########################################################################"