cloudstack/setup/bindir
Rohit Yadav 3663af1434 cloud-setup-databases: modify try-except-finally for < python 2.4
Make cloud-setup-databases compatible to python 2.4 and before.

Add code Prasanna Santhanam <tsp@apache.org>
Partially revert a6dcd7af49 which removed
the fix for CLOUDSTACK-199: Fix how cloud-setup-databases parses
  Patch splits by right most @ in supplied argument to get
  user:password and host substrings.

Less than python <2.4 the following is unsupported and produces a
SyntaxError.
    try:
        ...code ...
    except ValueError:
        ...code ...
    finally:
        ...code ...

Workaround is the following
    try:
        try:
            ...code ...
        except ValueError:
            ...code ...
    finally:

Credits to Prasanna Santhanam <tsp@apache.org>

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-10-26 14:20:37 +05:30
..
cloud-migrate-databases.in applying the commits from Chip Childers licensing cleanup 2012-06-26 10:44:04 -04:00
cloud-set-guest-password.in CLOUDSTACK-321: Fixed a bug in cloud-set-guest-*.in 2012-10-12 01:20:15 +05:30
cloud-set-guest-sshkey.in CLOUDSTACK-321: Fixed a bug in cloud-set-guest-*.in 2012-10-12 01:20:15 +05:30
cloud-setup-databases.in cloud-setup-databases: modify try-except-finally for < python 2.4 2012-10-26 14:20:37 +05:30
cloud-setup-encryption.in it's 1.9.0 not 1.9....duh 2012-10-08 01:52:02 -07:00
cloud-sysvmadm.in applying the commits from Chip Childers licensing cleanup 2012-06-26 10:44:04 -04:00