Your IP : 216.73.216.130


Current Path : /proc/self/root/usr/lib/tasksel/tests/
Upload File :
Current File : //proc/self/root/usr/lib/tasksel/tests/server

#!/bin/sh

if ! [ "$NEW_INSTALL" ]; then
	exit 3
fi

/usr/lib/tasksel/tests/desktop
ret=$?
case $ret in
	0|2) # is desktop
		exit 3 # not server
	;;
	*)
		exit 2 # likely is server
	;;
esac