source: trunk/debathena/scripts/debian-versions.sh @ 24562

Revision 24562, 513 bytes checked in by broder, 14 years ago (diff)
Lucid is released.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2DEBIAN_CODES="lenny squeeze hardy intrepid jaunty karmic lucid"
3gettag() {
4    case "$1" in
5        lenny)
6            echo "~debian5.0"
7            ;;
8        squeeze)
9            echo "~debian6.0~0.2"
10            ;;
11        hardy)
12            echo "~ubuntu8.04"
13            ;;
14        intrepid)
15            echo "~ubuntu8.10"
16            ;;
17        jaunty)
18            echo "~ubuntu9.04"
19            ;;
20        karmic)
21            echo "~ubuntu9.10"
22            ;;
23        lucid)
24            echo "~ubuntu10.04"
25            ;;
26        versions)
27            echo "$DEBIAN_CODES"
28            ;;
29        *)
30            echo "error"
31            return 1
32            ;;
33    esac
34}
Note: See TracBrowser for help on using the repository browser.