https://github.com/albertodonato/sonarr-snap
Snap for the Sonarr smart PVR
https://github.com/albertodonato/sonarr-snap
snap sonarr sonarr-pvr
Last synced: 3 months ago
JSON representation
Snap for the Sonarr smart PVR
- Host: GitHub
- URL: https://github.com/albertodonato/sonarr-snap
- Owner: albertodonato
- License: gpl-3.0
- Created: 2018-12-27T13:26:20.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2023-05-21T20:39:40.000Z (over 2 years ago)
- Last Synced: 2023-05-21T21:23:22.582Z (over 2 years ago)
- Topics: snap, sonarr, sonarr-pvr
- Language: Shell
- Homepage: https://snapcraft.io/sonarr
- Size: 54.7 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Snap for the Sonarr smart PVR
[](https://snapcraft.io/sonarr)
This snap contains the [Sonarr](https://sonarr.tv) smart PVR.
It can be installed from the store via:
```bash
sudo snap install sonarr
```
After installing the snap the service web interface will be accessible at
by default.
[](https://snapcraft.io/sonarr)
## Setting storage path for downloads
Since the application runs as a confined stap, by default the applicaion will
only be able to access files under `/var/snap/sonarr`. It is also possible to
access storage under `/media` by manually connecting the `removable-media`
interface with
```bash
sudo snap connect sonarr:removable-media
```
It's suggested to create a directory owned by `root` either under
`/var/snap/sonarr/common` or under `/media`, after connecting the interface.
*Note*: mount points information won't be displayed by default, as it requires
manually connecting the `mount-observe` interface:
```bash
sudo snap connect sonarr:mount-observe
```
## Building the snap
The snap can be built by simply running:
```bash
snapcraft
```
Once, built, install the snap with:
```bash
sudo snap install --dangerous sonarr_*.snap
```