Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
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--
2025-07-15 09:09
65-md-incremental-imsm.rules
1.42
KB
-rw-r--r--
2025-07-15 09:09
md-noddf.sh
88
B
-rwxr-xr-x
2018-10-08 13:38
md-noimsm.sh
90
B
-rwxr-xr-x
2018-10-08 13:38
md-shutdown.sh
457
B
-rwxr-xr-x
2025-07-15 09:09
mdmon-pre-shutdown.sh
229
B
-rwxr-xr-x
2018-10-08 13:38
mdmon-pre-udev.sh
130
B
-rwxr-xr-x
2018-10-08 13:38
mdraid-cleanup.sh
493
B
-rwxr-xr-x
2025-07-15 09:09
mdraid-needshutdown.sh
155
B
-rwxr-xr-x
2018-10-08 13:38
mdraid-waitclean.sh
691
B
-rwxr-xr-x
2025-07-15 09:09
mdraid_start.sh
1.79
KB
-rwxr-xr-x
2025-07-15 09:09
module-setup.sh
4.56
KB
-rwxr-xr-x
2025-07-15 09:09
parse-md.sh
2.54
KB
-rwxr-xr-x
2025-07-15 09:09
Save
Rename
#!/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