Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
dsa/control: New homepage
· 9ec996e6
Jan Wagner
authored
Nov 07, 2018
9ec996e6
dsa/update-files.sh: Fix upstream URL
· ab393a42
Jan Wagner
authored
Nov 07, 2018
ab393a42
Show whitespace changes
Inline
Side-by-side
dsa/control
View file @
ab393a42
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.
...
...
dsa/update-files.sh
View file @
ab393a42
...
...
@@ -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
}
"
"http
s
://
salsa
.debian.org/
dsa-team/
mirror/dsa-nagios
/raw/master/
dsa-nagios-checks/
${
i
}
"
;
then
mv
"
${
tmp
}
"
"
$i
"
else
rm
-f
"
${
tmp
}
"
...
...