Skip to content
Commits on Source (2)
Homepage: https://anonscm.debian.org/cgit/mirror/dsa-nagios.git/
Homepage: https://salsa.debian.org/dsa-team/mirror/dsa-nagios
Uploaders: Bernd Zeimetz <bzed@debian.org>
Description: plugins from the Debian System Administrators
nagios plugins repository.
......
......@@ -3,7 +3,7 @@
# update all files from the dsa nagios git
find checks sbin share etc -type f | while read i; do
tmp=`mktemp`
if wget -O "${tmp}" "http://anonscm.debian.org/gitweb/?p=mirror/dsa-nagios.git;a=blob_plain;f=dsa-nagios-checks/${i};hb=HEAD"; then
if wget -O "${tmp}" "https://salsa.debian.org/dsa-team/mirror/dsa-nagios/raw/master/dsa-nagios-checks/${i}"; then
mv "${tmp}" "$i"
else
rm -f "${tmp}"
......