Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /snap/core20/2866/usr/lib/systemd/ |
Upload File : |
#!/bin/sh
set -eu
modeenv=/run/mnt/data/system-data/var/lib/snapd/modeenv
mode="$(/usr/libexec/core/get-mode mode "${modeenv}")" || mode="unknown"
case "${mode}" in
install|recover|factory-reset)
save_dir=/run/mnt/ubuntu-data/system-data/var/log/debug
;;
*)
save_dir=/run/mnt/data/system-data/var/log/debug
;;
esac
next_num=1
for boot in "${save_dir}"/boot*; do
if [ -d "${boot}" ]; then
base="$(basename "${boot}")"
num="${base#boot}"
if [ "${num}" -ge "${next_num}" ]; then
next_num="$((${num}+1))"
fi
fi
done
next_dir="${save_dir}/boot${next_num}"
mkdir -p "${next_dir}"
mv /run/log/base/*.svg "${next_dir}/"
for initrd_file in /run/log/*.svg; do
if [ -f "${initrd_file}" ]; then
base="$(basename "${initrd_file}")"
mv "${initrd_file}" "${next_dir}/initrd-${base}"
fi
done