HEX
Server: Apache/2.4.63 (Unix)
System: Linux TOMS-220NAS 4.4.302+ #86009 SMP Wed Nov 26 18:19:17 CST 2025 x86_64
User: flavio87 (1026)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: //proc/25635/root/lib/systemd/scripts/update-dir-preference.sh
#!/bin/sh

statusFn()
{
	if [ ! -d $linkname ]
	then
		exit 1
	fi

	if [ ! -L $linkname ]
	then
		exit 1
	fi
	exit 0
}

case $1 in
	status)
		statusFn
		exit $?
	;;
	*)
		echo "pid: $$, run updateUserFolder"
		/usr/syno/bin/synopreferencedir --user-update
		echo "pid: $$, finish updateUserFolder"
		exit $?
	;;
esac