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

Revision 23262, 447 bytes checked in by broder, 15 years ago (diff)
Remove the other reference to feisty in debian-versions.sh
  • Property svn:executable set to *
Line 
1#!/bin/sh
2DEBIAN_CODES="etch lenny dapper gutsy hardy intrepid"
3gettag() {
4    case "$1" in
5        etch)
6            echo "~debian4.0"
7            ;;
8        lenny)
9            echo "~debian4.1~0.1"
10            ;;
11        dapper)
12            echo "~ubuntu6.06"
13            ;;
14        gutsy)
15            echo "~ubuntu7.10"
16            ;;
17        hardy)
18            echo "~ubuntu8.04"
19            ;;
20        intrepid)
21            echo "~ubuntu8.10"
22            ;;
23        versions)
24            echo "$DEBIAN_CODES"
25            exit 1
26            ;;
27        *)
28            echo "error"
29            exit 1
30            ;;
31    esac
32}
Note: See TracBrowser for help on using the repository browser.