Skip to content

Commit

Permalink
docs: update install-script
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerboy448 authored and ServarrAdmin committed Feb 14, 2024
1 parent da16b2b commit eec4744
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion install-script.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Servarr Installation Script
description: Common Installation Script for the Servarr Suite of Applications
published: true
date: 2024-01-29T20:19:07.629Z
date: 2024-02-14T00:20:15.131Z
tags:
editor: markdown
dateCreated: 2022-02-03T15:12:29.483Z
Expand Down Expand Up @@ -45,3 +45,30 @@ curl -o servarr-install-script.sh https://raw.githubusercontent.com/Servarr/Wiki
```shell
sudo bash servarr-install-script.sh
```

## Uninstalling

To uninstall and keep your appdata.

### Radarr

```bash
sudo systemctl stop radarr
sudo rm -rf /opt/Radarr
sudo rm -rf /etc/systemd/system/radarr.service
sudo systemctl -q daemon-reload
```

## Uninstall and Purge

To uninstall and remove your appdata.

### Radarr

```bash
sudo systemctl stop radarr
sudo rm -rf /opt/Radarr
sudo rm -rf /var/lib/radarr
sudo rm -rf /etc/systemd/system/radarr.service
sudo systemctl -q daemon-reload
```

0 comments on commit eec4744

Please sign in to comment.