summaryrefslogtreecommitdiff
path: root/cloudinit/distros/openEuler.py
blob: 92f1985d3b2c262d2ecef5b20243e9c679fc35f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# This file is part of cloud-init. See LICENSE file for license information.

from cloudinit.distros import rhel


class Distro(rhel.Distro):
    def __init__(self, name, cfg, paths):
        super(Distro, self).__init__(name, cfg, paths)
        self.osfamily = "openEuler"


# vi: ts=4 expandtab