prepare to build on saucy
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Wed, 8 Jan 2014 14:12:54 +0000 (15:12 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Wed, 8 Jan 2014 14:12:54 +0000 (15:12 +0100)
README-fcdistros.txt
build.common
pkgs.py
vbuild-init-vserver.sh

index ab3e155..4fcfaec 100644 (file)
@@ -12,7 +12,8 @@
 # #################### debians and ubuntus
 #
 # the build utilities can now produce a build VM for the most recent
-# debians (squeeze, wheezy) and ubuntus ( oreinic, precise, quantal, raring )
+# debians (squeeze, wheezy) and ubuntus ( oreinic, precise, quantal,
+# raring, saucy )
 # 
 # of course we're nowhere close to supporting the whole PLC on these
 # systems, as packaging for debian requires manual tweaks in every
index 53371c0..527d222 100644 (file)
@@ -63,7 +63,7 @@ function pl_getReleaseName () {
        [Ss]L*)
            releasename=sl$release
            ;;
-       squeeze|wheezy|oneiric|precise|quantal|raring)
+       squeeze|wheezy|oneiric|precise|quantal|raring|saucy)
            releasename=$distro
            ;;
        *)
diff --git a/pkgs.py b/pkgs.py
index ced8d97..f73a32e 100755 (executable)
--- a/pkgs.py
+++ b/pkgs.py
@@ -40,7 +40,7 @@ known_fcdistros = [ 'centos5','centos6',
                     # debians
                     'squeeze','wheezy',
                     # ubuntus
-                    'oneiric', 'precise', 'quantal', 'raring' ]
+                    'oneiric', 'precise', 'quantal', 'raring', 'saucy' ]
 default_pldistro='onelab'
 
 known_keywords=['groupname', 'groupdesc', 
index b68bc40..1e8ef4a 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|raring) echo debootstrap ;;
+       squeeze|wheezy|oneiric|precise|quantal|raring|saucy) 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|raring) 
+       oneiric|precise|quantal|raring|saucy
            echo http://mir1.ovh.net/ubuntu/ubuntu/ ;;
        *) echo unknown distro $fcdistro; exit 1;;
     esac