You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
313 B
11 lines
313 B
3 years ago
|
#!/bin/sh
|
||
|
# unconditionally enable online repository
|
||
|
|
||
|
[ -n "$GLOBAL_LIVE_REPO" ] || exit 0
|
||
|
|
||
|
PROTO="${GLOBAL_LIVE_REPO%/*}" # http, ftp, rsync
|
||
|
MIRROR="${GLOBAL_LIVE_REPO#*/}" # alt, heanet, kiev, yandex, ...
|
||
|
|
||
|
sed -i "s,^#\(rpm \[.*\] ${PROTO:-http}.*\),\1," \
|
||
|
"/etc/apt/sources.list.d/${MIRROR:-yandex}.list" ||:
|