blob: 88609e8bf0f35f9340e4ee00a3e0dd67550055d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
for file in /root/config/*; do [ -r $file ] && . $file; done
for x in /etc/apt/sources.list.d/*.list; do
if grep -q '### THIS FILE IS AUTOMATICALLY CONFIGURED ###' $x; then
rm -f $x
fi
done
if [ -f /etc/apt/sources.list.d/steam.list ]; then
rm -f /etc/apt/sources.list.d/steam.list
fi
sed -i -e "s|@DISTRIBUTION@|${LB_DISTRIBUTION}|g" /etc/apt/sources.list
|