summaryrefslogtreecommitdiff
path: root/cloudinit/distros/fedora.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-06-22 12:52:26 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-06-22 12:52:26 -0700
commitc55aa553b2f7141d539810bf17ba1aebb1a50bc4 (patch)
treebd60c276482902e09fac6c528c5ac23ba730ed8b /cloudinit/distros/fedora.py
parente69068d4b431ad237ff7e57795759fe8025a4bd7 (diff)
downloadvyos-cloud-init-c55aa553b2f7141d539810bf17ba1aebb1a50bc4.tar.gz
vyos-cloud-init-c55aa553b2f7141d539810bf17ba1aebb1a50bc4.zip
1. Add a ubuntu and fedora subclass of the RH/debian root classes
2. Move the ubuntu class to the debian class (since thats really what it is)
Diffstat (limited to 'cloudinit/distros/fedora.py')
-rw-r--r--cloudinit/distros/fedora.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/cloudinit/distros/fedora.py b/cloudinit/distros/fedora.py
new file mode 100644
index 00000000..c777845d
--- /dev/null
+++ b/cloudinit/distros/fedora.py
@@ -0,0 +1,31 @@
+# vi: ts=4 expandtab
+#
+# Copyright (C) 2012 Canonical Ltd.
+# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
+#
+# Author: Scott Moser <scott.moser@canonical.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3, as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+from cloudinit.distros import rhel
+
+from cloudinit import log as logging
+
+LOG = logging.getLogger(__name__)
+
+
+class Distro(rhel.Distro):
+ pass