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

« back to all changes in this revision

Viewing changes to azurelinuxagent/distro/default/scvmm.py

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2016-08-24 16:48:22 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20160824164822-vdf8m5xy5gycm1cz
Tags: 2.1.6-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Microsoft Azure Linux Agent
2
 
#
3
 
# Copyright 2014 Microsoft Corporation
4
 
#
5
 
# Licensed under the Apache License, Version 2.0 (the "License");
6
 
# you may not use this file except in compliance with the License.
7
 
# You may obtain a copy of the License at
8
 
#
9
 
#     http://www.apache.org/licenses/LICENSE-2.0
10
 
#
11
 
# Unless required by applicable law or agreed to in writing, software
12
 
# distributed under the License is distributed on an "AS IS" BASIS,
13
 
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
# See the License for the specific language governing permissions and
15
 
# limitations under the License.
16
 
#
17
 
# Requires Python 2.4+ and Openssl 1.0+
18
 
#
19
 
 
20
 
import os
21
 
import subprocess
22
 
import azurelinuxagent.logger as logger
23
 
 
24
 
VMM_CONF_FILE_NAME = "linuxosconfiguration.xml"
25
 
VMM_STARTUP_SCRIPT_NAME= "install"
26
 
 
27
 
class ScvmmHandler(object):
28
 
    def __init__(self, distro):
29
 
        self.distro = distro
30
 
 
31
 
    def detect_scvmm_env(self):
32
 
        logger.info("Detecting Microsoft System Center VMM Environment")
33
 
        self.distro.osutil.mount_dvd(max_retry=1, chk_err=False)
34
 
        mount_point = self.distro.osutil.get_dvd_mount_point()
35
 
        found = os.path.isfile(os.path.join(mount_point, VMM_CONF_FILE_NAME))
36
 
        if found:
37
 
            self.start_scvmm_agent()
38
 
        else:
39
 
            self.distro.osutil.umount_dvd(chk_err=False)
40
 
        return found
41
 
 
42
 
    def start_scvmm_agent(self):
43
 
        logger.info("Starting Microsoft System Center VMM Initialization "
44
 
                    "Process")
45
 
        mount_point = self.distro.osutil.get_dvd_mount_point()
46
 
        startup_script = os.path.join(mount_point, VMM_STARTUP_SCRIPT_NAME)
47
 
        subprocess.Popen(["/bin/bash", startup_script, "-p " + mount_point])
48