# Copyright (C) 2014 Amazon.com, Inc. or its affiliates.
#
# Author: Andrew Jorgensen <ajorgens@amazon.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
import cc_yum_configure
from cloudinit.settings import PER_INSTANCE
frequency = PER_INSTANCE
distros = [ 'amazon' ]
def handle(name, cfg, cloud, log, _args):
cc_yum_configure.handle(name, cfg, cloud, log, _args)
# vi: ts=4 expandtab