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

« back to all changes in this revision

Viewing changes to azurelinuxagent/distro/freebsd/distro.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
 
from azurelinuxagent.distro.default.distro import DefaultDistro
21
 
from azurelinuxagent.distro.freebsd.resourceDisk import FreeBSDResourceDiskHandler
22
 
from azurelinuxagent.distro.freebsd.osutil import FreeBSDOSUtil
23
 
 
24
 
 
25
 
class FreeBSDDistro(DefaultDistro):
26
 
    def __init__(self):
27
 
        super(FreeBSDDistro, self).__init__()
28
 
        self.osutil = FreeBSDOSUtil()
29
 
        self.resource_disk_handler = FreeBSDResourceDiskHandler(self)