#!/usr/bin/env python
# Copyright (c) 2006-2010 Arastra, Inc.  All rights reserved.
# Arastra, Inc. Confidential and Proprietary.

import sys
import UpdateUcd
from time import asctime

try:
   sys.exit( UpdateUcd.main() )
except:
   e = sys.exc_info()[ 0 ]
   print >> sys.stderr, asctime(), "DPM: Failed with error %s" % e
   print >> sys.stderr, asctime(), "DPM: Ignoring parameter update"
   raise
