#!/bin/sh set -e [ "$1" = "configure" ] || exit 0 [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx repos_regexp=" ^deb .*tp://security.debian.org.*buster/updates main contrib non-free ^deb .*tp://ftp.hr.debian.org/.*debian.*buster main contrib non-free ^deb .*tp://ftp.hr.debian.org/.*debian.*buster-updates main contrib non-free ^deb .*tp://ftp.carnet.hr/carnet-debian.*buster main non-free" repos=" 1 deb http://security.debian.org/ buster/updates main contrib non-free 2 deb http://ftp.hr.debian.org/debian/ buster main contrib non-free 3 deb http://ftp.hr.debian.org/debian/ buster-updates main contrib non-free 4 deb http://ftp.carnet.hr/carnet-debian/ carnet-buster main non-free" notneeded_repos_regexp="^deb.*tp://.*debian-non-US" IFS=" " counter=1 for i in $repos_regexp; do if ! grep -q "$i" /etc/apt/sources.list; then needed="$needed $counter" fi counter=$(($counter + 1)) done if grep -q "$notneeded_repos_regexp" /etc/apt/sources.list; then echo "CN: Sljedeci repozitoriji nisu vise potrebni:" grep "$notneeded_repos_regexp" /etc/apt/sources.list echo "" fi if [ ! -z "$needed" ]; then echo "CN: Ovi repozitoriji nisu pronadjeni u vasoj datoteci sources list:" IFS=" " for i in $needed; do echo $repos | grep ^$i | cut -c3-300 done echo "" echo "CN: Gornje repozitorije mozete rucno dodati u /etc/apt/sources.list ili samo pokrenuti:" echo "CN: # install-carnet-sources.list" fi #DEBHELPER#