HEX
Server: Apache/2.4.63 (Unix)
System: Linux Synopilou92 4.4.302+ #72806 SMP Mon Jul 21 23:16:00 CST 2025 x86_64
User: pilou92 (1026)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: //var/packages/Node.js_v16/scripts/start-stop-status
#!/bin/sh
# Copyright (C) 2000-2021 Synology Inc. All rights reserved.
. $(dirname $0)/common

case $1 in
	start)
		#FIXME
		# Link under /usr/bin will be clean after DSM upgrade
		# It should be moved to /usr/local/bin in DSM6
		GET_STATUS
		if [ 0 -ne $? ]; then
			SET_DEFAULT_NODE
		fi
		exit 0
		;;
	stop)
		exit 0
		;;
	status)
		GET_STATUS
		exit $?
		;;
	killall)
		;;
	log)
		exit 0
		;;
esac