Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoradio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
autoradio
Commits
27b8ee93
Commit
27b8ee93
authored
9 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
actually pass the config file to liquidsoap
parent
c50d8b2d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
node/liquidsoap.go
+1
-5
1 addition, 5 deletions
node/liquidsoap.go
with
1 addition
and
5 deletions
node/liquidsoap.go
+
1
−
5
View file @
27b8ee93
...
...
@@ -91,8 +91,6 @@ func (p *liquidsoapParams) Render(w io.Writer) error {
// Stop().
type
liquidsoapController
struct
{
params
*
liquidsoapParams
tmpdir
string
configPath
string
restartDelay
time
.
Duration
// Information about the running process. The lock protects
...
...
@@ -139,7 +137,7 @@ func (l *liquidsoapController) runOnce() {
// channel is closed (requesting termination). Keep the lock
// held until l.process is set, so that we can synchronize the
// process termination properly.
cmd
:=
exec
.
Command
(
*
liquidsoapBin
,
"-T"
,
"-U"
,
"-v"
,
l
.
config
Path
)
cmd
:=
exec
.
Command
(
*
liquidsoapBin
,
"-T"
,
"-U"
,
"-v"
,
config
)
cmd
.
Stdout
=
os
.
Stderr
cmd
.
Stderr
=
os
.
Stderr
if
err
:=
cmd
.
Start
();
err
!=
nil
{
...
...
@@ -196,6 +194,4 @@ func (l *liquidsoapController) Stop() {
l
.
lock
.
Unlock
()
l
.
wg
.
Wait
()
os
.
RemoveAll
(
l
.
tmpdir
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment