I have some ruby code, it has the following
system("rgvim " + MY_FILE)
This works fine from the terminal but if I run this code as a rack application using systemd, the system call fails to work. I get the message:
Dec 06 14:40:54 mypc config.ru[10211]: Vim: Warning: Output is not to a terminal
Dec 06 14:40:54 mypc config.ru[10211]: Vim: Warning: Input is not from a terminal
I think this is because the daemonized process does not have access to the file descriptors.
EDIT Some commenters asked for more specific details of my use case. Here goes: I'm trying to start a rack-based ruby app with systemd. The rack app has the above system call in the code, and works fine when I run it from the terminal using
rack config.ru
However, when I start it with systemd, as described above more generally, the rack app does not have access to the right file descriptors. It seems to me like it should be somehow possible to map the current X display and/or file descriptors from systemd
vimto be attached to when you call it from your daemon? – derobert Dec 6 '12 at 20:48vim,gvim,rgvimor any other variant, running as a daemon means it doesn't have access to a controlling terminal or your X display (which, in a addition, may be locked or logged out, or not even running). So the real question is, what are you hoping/trying to accomplish? – twalberg Dec 6 '12 at 21:40