wine terminate signal from supervisor

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
alexlp
Newbie
Newbie
Posts: 1
Joined: Thu Mar 24, 2016 6:13 pm

wine terminate signal from supervisor

Post by alexlp »

Hello

I use wine to run console python application which works with some Windows dll and listend TCP port.
Because of application written in Python, launch command is like

Code: Select all

wine C:\\Python27\\python.exe run.py
wine is working (some warnings related to XServer which is not run, but in general OK)

I use supervisord for controlling of application alive. As far as I understand TERM or QUIT signals is not working as expected with wine and when I'm trying to restart process from supervisord (it sends sigterm) it fails - old program is not terminated and new unable to run.

I tried to use

Code: Select all

wineserver -k && wine C:\\Python27\\python.exe run.py
as command argument for supervisor, but this is not working also

Does anybody has an experience with such stack of software?
Locked