]> piware.de Git - bin.git/commitdiff
ubuntu-backport-cockpit: Default to noble, add oracular master
authorMartin Pitt <martin@piware.de>
Fri, 21 Jun 2024 04:58:38 +0000 (06:58 +0200)
committerMartin Pitt <martin@piware.de>
Fri, 21 Jun 2024 04:58:38 +0000 (06:58 +0200)
ubuntu-backport-cockpit

index c9e90e77430d4b39ffd607227aab2c5691aa8ea6..36b281ec46efff3b5a052a9a01871f995a0ab028 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -eu
 PACKAGE=${1:-cockpit}
-TARGET=${2:-jammy}
+TARGET=${2:-noble}
 POCKET="${TARGET}-backports"
 
 series_ver() {
@@ -32,11 +32,8 @@ apt-get source $PACKAGE
 cd ${PACKAGE}-*
 
 case "$TARGET" in
+    oracular) VER=24.10 ;;
     noble) VER=24.04 ;;
-    mantic) VER=23.10 ;;
-    lunar) VER=23.04 ;;
-    kinetic) VER=22.10 ;;
-    jammy) VER=22.04 ;;
     *) echo "Unknown target $TARGET" >&2; exit 1 ;;
 esac