mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
12 lines
396 B
Plaintext
Executable File
12 lines
396 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
echo '**** Checking if slurpit_netbox is already installed ****'
|
|
if ! pip list 2>&1 | grep -q "slurpit_netbox"; then
|
|
echo "**** Adding slurpit_netbox and their deps to package install lists ****"
|
|
echo "\
|
|
setuptools \
|
|
slurpit_netbox" >> /mod-pip-packages-to-install.list
|
|
else
|
|
echo "**** slurpit_netbox already installed, skipping ****"
|
|
fi
|