HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //snap/docker/3377/sbin/fsck.zfs
#!/bin/sh
#
# fsck.zfs: A fsck helper to accommodate distributions that expect
# to be able to execute a fsck on all filesystem types.
#
# This script simply bubbles up some already-known-about errors,
# see fsck.zfs(8)
#

if [ $# -eq 0 ]; then
	echo "Usage: $0 [options] dataset…" >&2
	exit 16
fi

ret=0
for dataset; do
	case "$dataset" in
		-*)
			continue
			;;
		*)
			;;
	esac

	pool="${dataset%%/*}"

	case "$(/sbin/zpool list -Ho health "$pool")" in
		DEGRADED)
			ret=$(( ret | 4 ))
			;;
		FAULTED)
			awk '!/^([[:space:]]*#.*)?$/ && $1 == "'"$dataset"'" && $3 == "zfs" {exit 1}' /etc/fstab || \
				ret=$(( ret | 8 ))
			;;
		"")
			# Pool not found, error printed by zpool(8)
			ret=$(( ret | 8 ))
			;;
		*)
			;;
	esac
done

exit "$ret"