私はteamspeakサーバー用のシンプルなスタートアップスクリプトを作成しようとしていますが、それを機能させることはできません。
initctl startと言うと、単に実行するだけで終了することはなく、メッセージを出力することさえありません。停止についても同様です。
間違ったことをしていないことを確認するために、cronスクリプトをコピーして実行しようとしましたが、同じことが起こります。
ここで何が間違っていますか?
更新:
TS3のスクリプトは次のとおりです。
# myservice - myservice job file
description "my service description"
author "Me <myself@i.com>"
# Stanzas
#
# Stanzas control when and how a process is started and stopped
# See a list of stanzas here: http://upstart.ubuntu.com/wiki/Stanzas#respawn
# When to start the service
start on runlevel [2345]
# When to stop the service
stop on runlevel [016]
# Automatically restart process if crashed
respawn
# Essentially lets upstart know the process will detach itself to the background
expect fork
# Start the process
script
emit going into TS3 dir
chdir /home/danizmax/teamspeak3-server_linux-x86/
emit starting TS3
exec su -c "/home/danizmax/teamspeak3-server_linux-x86/ts3server_startscript.sh start" danizmax &
emit done
end script
私は最も単純なスクリプトでも試しましたが、それもうまくいきません:
description "regular background program processing daemon"
start on runlevel [2345]
stop on runlevel [!2345]
expect fork
respawn
exec echo example
console output
ご協力ありがとうございました。