mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-20 18:22:00 -04:00
11 lines
421 B
Plaintext
Executable File
11 lines
421 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
# This is an install script that is designed to run after init-mods-package-install
|
|
# so it can take advantage of packages installed
|
|
# init-mods-end depends on this script so that later init and services wait until this script exits
|
|
|
|
echo "*** Removing existing par2cmdline packages ***"
|
|
if apk list --installed -q | grep par2cmdline &> /dev/null; then
|
|
apk del --purge -q par2cmdline
|
|
fi
|