⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
libexec
/
e2fsprogs
/
Edit File: e2scrub_fail
#!/bin/bash # Email logs of failed e2scrub unit runs when the systemd service fails. mntpoint="$1" test -z "${mntpoint}" && exit 0 if ! type sendmail > /dev/null 2>&1; then echo "$0: sendmail program not found." exit 1 fi if test -f /etc/e2scrub.conf ; then . /etc/e2scrub.conf fi hostname="$(hostname -f 2>/dev/null)" test -z "${hostname}" && hostname="${HOSTNAME}" service_name="$(systemd-escape --template "e2scrub@.service" --path "${mntpoint}")" if test -z "${recipient}" ; then recipient="root" fi if test -z "${sender}" ; then sender="<e2scrub@${hostname}>" fi (cat << ENDL To: ${recipient} From: ${sender} Subject: e2scrub failure on ${mntpoint} So sorry, the automatic e2scrub of ${mntpoint} on ${hostname} failed. A log of what happened follows: ENDL systemctl status --full --lines 4294967295 "${service_name}") | sendmail -t -i
Simpan