ubuntuusers.de

Upstart Skript

Datum:
13. April 2013 15:39
Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#Script for MDETerminal Startup

description "IPOS MDE Terminal"


start on (filesystem
	  and started dbus
	  and runlevel [2345]
	  and started lxdm)

stop on runlevel [016]

script
	exec java -classpath /opt/iposMDETerminal/ -jar wupi.jar 
end script