You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably I misunderstood the documentation and got the syntax wrong using the manage-procs tool.
if I use e.g.:
./manage-procs add iocname /iocspath./st.cmd -P 20000
I get:
Created symlink /home/pi/.config/systemd/user/multi-user.target.wants/procserv-iocname.service -> /home/pi/.config/procServ.d/procserv-iocname.service.
Created symlink /home/pi/.config/systemd/user/procserv-iocname.service -> /home/pi/.config/procServ.d/procserv-iocname.service.
manage-procs --user start iocname
and the sytem file looks like:
[Unit]
Description=procServ for iocname
After=network.target remote-fs.target
ConditionPathIsDirectory=/home/pi/Downloads/procServ
somehow the positional argument "name" is okay, but everything later on is ignored. The service doesn't start due to lacking exec arguments.
Maybe one can give me an example how to use the arguments in a correct way?
best regards, Jan
The text was updated successfully, but these errors were encountered:
Start of the procServ instances is done through another helper. Please refer to man manage-procs
and manage-procs add -h
for more detailed descriptions of the syntax.
E.g., if I run $ manage-procs --user add -C /tmp/foo -P 20000 myioc /home/ralph/bin/bla --blubb
I get the service file ~/.config/procServ.d/procserv-myioc.service as
Probably I misunderstood the documentation and got the syntax wrong using the manage-procs tool.
if I use e.g.:
./manage-procs add iocname /iocspath./st.cmd -P 20000
I get:
Created symlink /home/pi/.config/systemd/user/multi-user.target.wants/procserv-iocname.service -> /home/pi/.config/procServ.d/procserv-iocname.service.
Created symlink /home/pi/.config/systemd/user/procserv-iocname.service -> /home/pi/.config/procServ.d/procserv-iocname.service.
manage-procs --user start iocname
and the sytem file looks like:
[Unit]
Description=procServ for iocname
After=network.target remote-fs.target
ConditionPathIsDirectory=/home/pi/Downloads/procServ
[Service]
Type=simple
ExecStart=None --user iocname
RuntimeDirectory=procserv-iocname
StandardOutput=syslog
StandardError=inherit
SyslogIdentifier=procserv-iocname
[Install]
WantedBy=multi-user.target
somehow the positional argument "name" is okay, but everything later on is ignored. The service doesn't start due to lacking exec arguments.
Maybe one can give me an example how to use the arguments in a correct way?
best regards, Jan
The text was updated successfully, but these errors were encountered: