Skip to content

Instantly share code, notes, and snippets.

@caio-vinicius
Created August 6, 2021 21:09
Show Gist options
  • Save caio-vinicius/dc06e4b417adb0937346fc11f52c3430 to your computer and use it in GitHub Desktop.
Save caio-vinicius/dc06e4b417adb0937346fc11f52c3430 to your computer and use it in GitHub Desktop.
norminette automatically update in /etc/init.d
#!/bin/sh
wget -q --spider http://google.com
if [ $? -eq 0 ]; then
python3 -m pip --disable-pip-version-check list --outdated | grep norminette >> /tmp/norminette_version.log
if [ $? -eq 0 ]; then
python3 -m pip --disable-pip-version-check -q install --upgrade norminette
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment