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

« back to all changes in this revision

Viewing changes to azurelinuxagent/pa/deprovision/ubuntu.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 azurelinuxagent.common.utils.fileutil as fileutil
 
22
from azurelinuxagent.pa.deprovision.default import DeprovisionHandler, \
 
23
    DeprovisionAction
 
24
 
 
25
 
 
26
class UbuntuDeprovisionHandler(DeprovisionHandler):
 
27
    def __init__(self):
 
28
        super(UbuntuDeprovisionHandler, self).__init__()
 
29
 
 
30
    def del_resolv(self, warnings, actions):
 
31
        if os.path.realpath(
 
32
                '/etc/resolv.conf') != '/run/resolvconf/resolv.conf':
 
33
            warnings.append("WARNING! /etc/resolv.conf will be deleted.")
 
34
            files_to_del = ["/etc/resolv.conf"]
 
35
            actions.append(DeprovisionAction(fileutil.rm_files, files_to_del))
 
36
        else:
 
37
            warnings.append("WARNING! /etc/resolvconf/resolv.conf.d/tail "
 
38
                            "and /etc/resolvconf/resolv.conf.d/original will "
 
39
                            "be deleted.")
 
40
            files_to_del = ["/etc/resolvconf/resolv.conf.d/tail",
 
41
                            "/etc/resolvconf/resolv.conf.d/original"]
 
42
            actions.append(DeprovisionAction(fileutil.rm_files, files_to_del))