USB デバイスからの入力をデコードし、コマンドを php スクリプトに送信する python スクリプトがあります。このスクリプトは、コンソールから実行するとうまく機能しますが、起動時に実行する必要があります。
systemctl start service-name
スクリプトを開始するための systemd サービスを作成しましたが、プロセスがコマンド プロンプトに戻らないことを除けば、うまく機能しているように見えます。実行中は、期待どおりに入力デバイスを操作できます。ただし、systemctl start
ctr-z でプロセスを終了すると、スクリプトは数秒間しか実行されません。
私が書いた.serviceファイルは次のとおりです。
[Unit]
After=default.target
[Service]
ExecStart=/usr/bin/python /root/pidora-keyboard.py
[Install]
WantedBy=default.target
ここに私のpythonスクリプトがあります:
#!/usr/bin/env python
import json, random
from evdev import InputDevice, categorize, ecodes
from urllib.request import urlopen
dev = InputDevice('/dev/input/event2')
def sendCommand(c):
return json.loads(urlopen("http://127.0.0.1/api.php?command="+c).read().decode("utf-8"))
def getRandomStation():
list = sendCommand('stationList')
list = list['stations']
index = random.randint(0, (len(list)-1))
print(list[index]['id'] + " - " + list[index]['name'])
sendCommand('s' + list[index]['id'])
print(dev)
for event in dev.read_loop():
if event.type == ecodes.EV_KEY:
key_pressed = str(categorize(event))
if ', down' in key_pressed:
print(key_pressed)
if 'KEY_PLAYPAUSE' in key_pressed:
print('play')
sendCommand('p')
if 'KEY_FASTFORWARD' in key_pressed:
print('fastforward')
sendCommand('n')
if 'KEY_NEXTSONG' in key_pressed:
print('skip')
sendCommand('n')
if 'KEY_POWER' in key_pressed:
print('power')
sendCommand('q')
if 'KEY_VOLUMEUP' in key_pressed:
print('volume up')
sendCommand('v%2b')
if 'KEY_VOLUMEDOWN' in key_pressed:
print('volume down')
sendCommand('v-')
if 'KEY_CONFIG' in key_pressed:
print('Random Station')
getRandomStation()
start コマンドが完了し、スクリプトがバックグラウンドで実行を継続できるように、スクリプトをサービス ファイルから非同期で実行するにはどうすればよいですか?