Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SickRage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
SickRage
Commits
7f7f1edc
Commit
7f7f1edc
authored
Mar 12, 2015
by
Alexandre Beloin
Browse files
Options
Downloads
Plain Diff
Merge pull request #1537 from fernandog/disable_daemon_mac
Disable daemon mode in MAC
parents
83b97797
eb457289
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
SickBeard.py
+3
-3
3 additions, 3 deletions
SickBeard.py
with
3 additions
and
3 deletions
SickBeard.py
+
3
−
3
View file @
7f7f1edc
...
@@ -110,9 +110,9 @@ class SickRage(object):
...
@@ -110,9 +110,9 @@ class SickRage(object):
help_msg
+=
"
-q --quiet Disables logging to console
\n
"
help_msg
+=
"
-q --quiet Disables logging to console
\n
"
help_msg
+=
"
--nolaunch Suppress launching web browser on startup
\n
"
help_msg
+=
"
--nolaunch Suppress launching web browser on startup
\n
"
if
sys
.
platform
==
'
win32
'
:
if
sys
.
platform
==
'
win32
'
or
sys
.
platform
==
'
darwin
'
:
help_msg
+=
"
-d --daemon Running as real daemon is not supported on Windows
\n
"
help_msg
+=
"
-d --daemon Running as real daemon is not supported on Windows
\n
"
help_msg
+=
"
On Windows, --daemon is substituted with: --quiet --nolaunch
\n
"
help_msg
+=
"
On Windows
and MAC
, --daemon is substituted with: --quiet --nolaunch
\n
"
else
:
else
:
help_msg
+=
"
-d --daemon Run as double forked daemon (includes options --quiet --nolaunch)
\n
"
help_msg
+=
"
-d --daemon Run as double forked daemon (includes options --quiet --nolaunch)
\n
"
help_msg
+=
"
--pidfile=<path> Combined with --daemon creates a pidfile (full path including filename)
\n
"
help_msg
+=
"
--pidfile=<path> Combined with --daemon creates a pidfile (full path including filename)
\n
"
...
@@ -208,7 +208,7 @@ class SickRage(object):
...
@@ -208,7 +208,7 @@ class SickRage(object):
self
.
consoleLogging
=
False
self
.
consoleLogging
=
False
self
.
noLaunch
=
True
self
.
noLaunch
=
True
if
sys
.
platform
==
'
win32
'
:
if
sys
.
platform
==
'
win32
'
or
sys
.
platform
==
'
darwin
'
:
self
.
runAsDaemon
=
False
self
.
runAsDaemon
=
False
# Write a pidfile if requested
# Write a pidfile if requested
...
...
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