summaryrefslogtreecommitdiff
path: root/cloudinit/distros/centos.py
blob: 4b803d2e7eabe36579b80ea538fc98c15adb1fcb (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
from cloudinit import log as logging

LOG = logging.getLogger(__name__)


class Distro(rhel.Distro):
    pass

# vi: ts=4 expandtab