add raring as a ubuntu distro
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 24 May 2013 09:10:53 +0000 (11:10 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 24 May 2013 09:10:53 +0000 (11:10 +0200)
README-fcdistros.txt
build.common
pkgs.py
vbuild-init-vserver.sh

index cc3ded5..ab3e155 100644 (file)
@@ -12,7 +12,7 @@
 # #################### debians and ubuntus
 #
 # the build utilities can now produce a build VM for the most recent
-# debians (squeeze, wheezy) and ubuntus ( oreinic, precise, quantal )
+# debians (squeeze, wheezy) and ubuntus ( oreinic, precise, quantal, raring )
 # 
 # of course we're nowhere close to supporting the whole PLC on these
 # systems, as packaging for debian requires manual tweaks in every
index b292143..5d49603 100644 (file)
@@ -63,7 +63,7 @@ function pl_getReleaseName () {
        [Ss]L*)
            releasename=sl$release
            ;;
-       squeeze|wheezy|oneiric|precise|quantal)
+       squeeze|wheezy|oneiric|precise|quantal|raring)
            releasename=$distro
            ;;
        *)
diff --git a/pkgs.py b/pkgs.py
index 3d97cc8..84010db 100755 (executable)
--- a/pkgs.py
+++ b/pkgs.py
@@ -40,7 +40,7 @@ known_fcdistros = [ 'centos5','centos6',
                     # debians
                     'squeeze','wheezy',
                     # ubuntus
-                    'oneiric', 'precise', 'quantal' ]
+                    'oneiric', 'precise', 'quantal', 'raring' ]
 default_pldistro='onelab'
 
 known_keywords=['groupname', 'groupdesc', 
index 49e183d..11e3090 100755 (executable)
@@ -85,7 +85,7 @@ function package_method () {
     fcdistro=$1; shift
     case $fcdistro in
        f[0-9]*|centos[0-9]*|sl[0-9]*) echo yum ;;
-       squeeze|wheezy|oneiric|precise|quantal) echo debootstrap ;;
+       squeeze|wheezy|oneiric|precise|quantal|raring) echo debootstrap ;;
        *) echo Unknown distro $fcdistro ;;
     esac 
 }
@@ -96,7 +96,7 @@ function debian_mirror () {
     case $fcdistro in
        squeeze|wheezy) 
            echo http://ftp2.fr.debian.org/debian/ ;;
-       oneiric|precise|quantal) 
+       oneiric|precise|quantal|raring
            echo http://mir1.ovh.net/ubuntu/ubuntu/ ;;
        *) echo unknown distro $fcdistro; exit 1;;
     esac