blob: 6e336cbfd63a00b883be1534853b7f0e80b722f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright (C) 2017 SUSE LLC
#
# Author: Robert Schweikert <rjschwei@suse.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
from cloudinit.distros import opensuse
from cloudinit import log as logging
LOG = logging.getLogger(__name__)
class Distro(opensuse.Distro):
pass
# vi: ts=4 expandtab
|