Created
August 6, 2021 21:09
-
-
Save caio-vinicius/dc06e4b417adb0937346fc11f52c3430 to your computer and use it in GitHub Desktop.
norminette automatically update in /etc/init.d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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