mirror of
https://github.com/linuxserver/libreelec-addon-repo.git
synced 2026-01-20 19:52:43 +08:00
10 lines
202 B
Bash
10 lines
202 B
Bash
#!/bin/sh
|
|
|
|
. /etc/profile
|
|
|
|
# stop and remove container
|
|
docker stop nginx
|
|
|
|
# remove image from cron updater list
|
|
sed -i '/nginx/d' /storage/.kodi/userdata/addon_data/docker.linuxserver.updater/update.sh
|