Summary: | New initscript has syntax errors | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Christian Birchinger (RETIRED) <joker> |
Component: | New packages | Assignee: | Chuck Short (RETIRED) <zul> |
Status: | RESOLVED TEST-REQUEST | ||
Severity: | normal | ||
Priority: | High | ||
Version: | 1.4_rc1 | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Christian Birchinger (RETIRED)
![]() Fixed in cvs. I've tried the the initscript in my client today. It also fails because of "--" I use the following line in /etc/vtund-start.conf: connection_name ip_of_server -p -P 5555 vtund ignores stuff like -P 5555 because of "--" So "/usr/sbin/vtund -- $args $host $server" fails where "/usr/sbin/vtund $args $host $server" would work. I suggest removing the "--" part complettly or make 100% sure that no optiones are possible after the "--" string. Wild guess would be the "--" *after* $args. I guess the most standard compilant version would be: Server: /usr/sbin/vtund -s -P $server -- $args Client: /usr/sbin/vtund $args -- $host $server (All arguments before "--" and the rest after) Argh sorry ... no -- in the server part at all since arguments are allowed in the 3rd collum. So it's better this way: Server: /usr/sbin/vtund -s -P $server $args Client: /usr/sbin/vtund $args -- $host $server Please test. Since vtun.rc is now exactly the way i changed it localy it should work on both client and server. |