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

Revision 25968, 543 bytes checked in by jdreed, 11 years ago (diff)
Add jessie to DEBIAN_CODES now that the initial build is complete
  • Property svn:executable set to *
Line 
1#!/bin/sh
2DEBIAN_CODES="squeeze wheezy jessie lucid precise quantal raring"
3gettag() {
4    case "$1" in
5        squeeze)
6            echo "~debian6.0"
7            ;;
8        wheezy)
9            echo "~debian7.0"
10            ;;
11        jessie)
12            echo "~debian8.0~0.1"
13            ;;
14        lucid)
15            echo "~ubuntu10.04"
16            ;;
17        precise)
18            echo "~ubuntu12.04"
19            ;;
20        quantal)
21            echo "~ubuntu12.10"
22            ;;
23        raring)
24            echo "~ubuntu13.04"
25            ;;
26        saucy)
27            echo "~ubuntu13.10~0.1"
28            ;;
29        versions)
30            echo "$DEBIAN_CODES"
31            ;;
32        *)
33            echo "error"
34            return 1
35            ;;
36    esac
37}
Note: See TracBrowser for help on using the repository browser.