9 lines
123 B
Plaintext
9 lines
123 B
Plaintext
|
#!/bin/ksh
|
||
|
|
||
|
# Cleanly reboots an AIX node
|
||
|
|
||
|
echo "Shutting and rebooting node NOW !!!"
|
||
|
echo "shutdown -Fr" | at now
|
||
|
|
||
|
exit 0
|