~ubuntu-branches/debian/stretch/waagent/stretch

« back to all changes in this revision

Viewing changes to azurelinuxagent/utils/osutil.py

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2016-02-01 13:11:28 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20160201131128-4wxc2tklmq3x40xe
Tags: 2.1.2-1
* New upstream version.
* Depend on host, needed by Microsofts custom script stuff.
* Use cloud-init:
  - Use Ubuntu provisioning handler, disable provisioning.
  - Depend on new enough version of cloud-init.
  - Update dependencies in init script and service.
  - Disable recursive agent invocation and hostname bounce in clout-init.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Windows Azure Linux Agent
 
1
# Microsoft Azure Linux Agent
2
2
#
3
3
# Copyright 2014 Microsoft Corporation
4
4
#
23
23
from azurelinuxagent.distro.default.osutil import OSUtilError
24
24
import azurelinuxagent.distro.loader as loader
25
25
 
26
 
OSUtil = loader.GetOSUtil()
 
26
OSUTIL = loader.get_osutil()
27
27