Prva inacica za buster
[apt-cn.git] / debian / postinst
index b3b9e4a..8344168 100755 (executable)
@@ -6,16 +6,16 @@ set -e
 [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx
 
 repos_regexp="
-^deb .*tp://security.debian.org.*stretch/updates main contrib non-free
-^deb .*tp://ftp.hr.debian.org/.*debian.*stretch main contrib non-free
-^deb .*tp://ftp.hr.debian.org/.*debian.*stretch-updates main contrib non-free
-^deb .*tp://ftp.carnet.hr/carnet-debian.*stretch main non-free"
+^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/ stretch/updates main contrib non-free
-2 deb http://ftp.hr.debian.org/debian/ stretch main contrib non-free
-3 deb http://ftp.hr.debian.org/debian/ stretch-updates main contrib non-free
-4 deb http://ftp.carnet.hr/carnet-debian/ carnet-stretch main non-free"
+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"
 
@@ -31,19 +31,19 @@ for i in $repos_regexp; do
 done
 
 if grep -q "$notneeded_repos_regexp" /etc/apt/sources.list; then
-  echo "CN: Following repositories are obsolete:"
+  echo "CN: Sljedeci repozitoriji nisu vise potrebni:"
   grep "$notneeded_repos_regexp" /etc/apt/sources.list
   echo ""
 fi
 
 if [ ! -z "$needed" ]; then
-  echo "CN: Following repositories are not found in your sources list:"
+  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: You can add the above to /etc/apt/sources.list or just:"
+  echo "CN: Gornje repozitorije mozete rucno dodati u /etc/apt/sources.list ili samo pokrenuti:"
   echo "CN: # install-carnet-sources.list"
 fi