Skip to content

Commit

Permalink
chore: add uninstalling docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepolo committed Nov 6, 2024
1 parent d70164b commit b4b9886
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,14 @@ export default defineConfig({
],
},
{ text: "Updating", link: "/install/updating" },
{ text: "Debugging", link: "/debugging", items: [
{ text: "Invalid SSL", link: "/debugging/invalid-ssl" },
] },
{
text: "Debugging",
link: "/debugging",
items: [
{ text: "Invalid SSL", link: "/debugging/invalid-ssl" },
]
},
{ text: "Uninstall", link: "/uninstall" },
],
},
{
Expand Down Expand Up @@ -75,7 +80,7 @@ export default defineConfig({
{
text: "Custom K8s",
link: "/custom-k8s",
}
},
],

search: {
Expand Down
13 changes: 13 additions & 0 deletions uninstall.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Uninstalling 5Stack Panel

To uninstall the 5Stack Panel, you can run

```bash
/usr/local/bin/k3s-uninstall.sh
```

Then you will want to remove all files associated with 5Stack Panel under `/opt/5stack`

```bash
sudo rm -rf /opt/5stack
```

0 comments on commit b4b9886

Please sign in to comment.