Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Create backup of output file
· 23e64672
Andreas Tille
authored
Mar 10, 2019
23e64672
Explain how to create a .ssh/salsarc file
· 674934d0
Andreas Tille
authored
Mar 10, 2019
674934d0
Show whitespace changes
Inline
Side-by-side
inject-into-salsa-git
View file @
674934d0
...
...
@@ -8,6 +8,9 @@ SALSARC=~/.ssh/salsarc
if
[
!
-f
$SALSARC
]
;
then
echo
"Missing
${
SALSARC
}
"
echo
"Just create one containing"
echo
'SALSA_URL="https://salsa.debian.org/api/v4"'
echo
'SALSA_TOKEN="YOUR_SALSA_TOKEN"'
exit
1
fi
...
...
seek_outdated_med-packages
View file @
674934d0
...
...
@@ -2,6 +2,10 @@
OUTFILE
=
outdated_med-packages.txt
if
[
-e
${
OUTFILE
}
]
;
then
mv
${
OUTFILE
}
${
OUTFILE
}
~
fi
export
LC_ALL
=
C.UTF-8
echo
"Last-Update:
`
date
-R
`
"
>
$OUTFILE
...
...