Commit 5f81eb4a authored by George Fleury's avatar George Fleury

Fix wrong parameters on start daemon script

parent fde3182b
......@@ -112,7 +112,7 @@ if(open $etchandle, $etcfile)
$have_l = 1 if $line =~ /^-L\s/;
$have_c = 1 if $line =~ /^-c\s/;
$have_u = 1 if $line =~ /^-u\s/;
$have_u = 1 if $line =~ /^-U\s/;
push @$params, $line;
}
......@@ -120,7 +120,7 @@ if(open $etchandle, $etcfile)
$params = [];
}
push @$params, "-u telegramd" unless($have_u);
push @$params, "-U telegramd" unless($have_u);
push @$params, "-L $fd_reopened" unless($have_l);
push @$params, "-c config$idl" unless($have_c);
$params = join " ", @$params;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment