Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
dracut /
modules.d /
90mdraid /
Delete
Unzip
Name
Size
Permission
Date
Action
59-persistent-storage-md.rules
842
B
-rw-r--r--
2022-06-19 22:35
65-md-incremental-imsm.rules
1.42
KB
-rw-r--r--
2022-06-19 22:35
md-shutdown.sh
466
B
-rwxr-xr-x
2022-06-19 22:35
mdmon-pre-shutdown.sh
236
B
-rwxr-xr-x
2022-06-19 22:35
mdmon-pre-udev.sh
137
B
-rwxr-xr-x
2022-06-19 22:35
mdraid-cleanup.sh
502
B
-rwxr-xr-x
2022-06-19 22:35
mdraid-needshutdown.sh
160
B
-rwxr-xr-x
2022-06-19 22:35
mdraid-waitclean.sh
700
B
-rwxr-xr-x
2022-06-19 22:35
mdraid_start.sh
1.82
KB
-rwxr-xr-x
2022-06-19 22:35
module-setup.sh
4.47
KB
-rwxr-xr-x
2022-06-19 22:35
parse-md.sh
2.69
KB
-rwxr-xr-x
2022-06-19 22:35
Save
Rename
#!/usr/bin/sh _do_md_shutdown() { local ret local final=$1 info "Waiting for mdraid devices to be clean." mdadm -vv --wait-clean --scan | vinfo ret=$? info "Disassembling mdraid devices." mdadm -vv --stop --scan | vinfo ret=$((ret + $?)) if [ "x$final" != "x" ]; then info "/proc/mdstat:" vinfo < /proc/mdstat fi return $ret } if command -v mdadm > /dev/null; then _do_md_shutdown "$1" else : fi