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: //usr/syno/bin/mib_collector_on_dsm_service.sh
#!/bin/sh
# Copyright (c) 2019 Synology Inc. All rights reserved.

start()
{
	/usr/syno/bin/synosystemctl start syno_disk_mib_tool.service
	return 0
}

stop()
{
	/usr/syno/bin/synosystemctl stop syno_disk_mib_tool.service
	return 0
}

case $1 in
	start)
		start
		exit $?
	;;
	stop)
		stop
		exit 0
		;;
esac

exit 0