mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-02 22:57:34 -05:00
Inconsistency in linux autostart directions #2220
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Extras
Area: Import Lists
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Organizer
Area: Parser
Area: Scanning
Area: Tooling
Area: UI
Area: Unit Tests
On Hold: MetadataAPI Blocking
On Hold: MetadataAPI Blocking
Priority: High
Priority: Low
Priority: Medium
Status: Accepted
Status: Cannot Reproduce
Status: Confirmed
Status: Help Wanted
Status: In Progress
Status: Indexer - need invite
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: On Hold
Status: Ready for Review
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
conflict
lidarr-pull
no-conflict
not-pulled
readarr-pull
readarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Radarr#2220
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kaysond on GitHub (Jan 20, 2018).
The auto start on linux section of the wiki suggests creating the service file with the command
/usr/bin/mono --debug /opt/Radarr/Radarr.exe --nobrowserThe radar status section, however, shows the command
/usr/bin/mono --debug /usr/lib/radarr/Radarr.exe -nobrowser -data=/var/lib/radarr, where nobrowser has a single dash instead of double, and the-dataswitch has been added.Which is correct? What do nobrowser and data flags do?
@galli-leo commented on GitHub (Feb 7, 2018):
No idea, probably double dash. --nobrowser just tells radarr to not open your browser and loading the radarr page.
@kaysond commented on GitHub (Feb 7, 2018):
Assuming mono passes the arguments without change, looks like its a single dash (or a forward slash)
https://github.com/Radarr/Radarr/blob/develop/src/NzbDrone.Common/EnvironmentInfo/StartupContext.cs
The data flag appears to change where the app data is stored
https://github.com/Radarr/Radarr/blob/develop/src/NzbDrone.Common/EnvironmentInfo/AppFolderInfo.cs
I'm guessing these all work on radarr too?
https://github.com/Sonarr/Sonarr/wiki/Command-Line-Options
I'm happy to update the wiki for you
@galli-leo commented on GitHub (Feb 8, 2018):
Yeah that's correct, we use the same params as Sonarr. If you can update the wiki that would be great!
I think single and double dash don't matter, both should work.