/usr/lib/python2.6/site-packages/cloudinit/distros
NameSizeModeActions
parsers/-0755rm
arch.py71820644editdlrm
arch.pyc76380644editdlrm
arch.pyo76380644editdlrm
debian.py64350644editdlrm
debian.pyc68180644editdlrm
debian.pyo68180644editdlrm
fedora.py10720644editdlrm
fedora.pyc5220644editdlrm
fedora.pyo5220644editdlrm
freebsd.py87670644editdlrm
freebsd.pyc87730644editdlrm
freebsd.pyo87730644editdlrm
gentoo.py58440644editdlrm
gentoo.pyc60620644editdlrm
gentoo.pyo60620644editdlrm
net_util.py54880644editdlrm
net_util.pyc19870644editdlrm
net_util.pyo19870644editdlrm
rhel.py79350644editdlrm
rhel.pyc68370644editdlrm
rhel.pyo68370644editdlrm
rhel_util.py29300644editdlrm
rhel_util.pyc23100644editdlrm
rhel_util.pyo23100644editdlrm
sles.py64760644editdlrm
sles.pyc61240644editdlrm
sles.pyo61240644editdlrm
ubuntu.py11260644editdlrm
ubuntu.pyc5240644editdlrm
ubuntu.pyo5240644editdlrm
__init__.py318240644editdlrm
__init__.pyc230360644editdlrm
__init__.pyo230360644editdlrm
Edit: /usr/lib/python2.6/site-packages/cloudinit/distros/ubuntu.py (1126B)
# 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 # Author: Juerg Haefliger # Author: Joshua Harlow # Author: Ben Howard # # 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 . from cloudinit.distros import debian from cloudinit import log as logging LOG = logging.getLogger(__name__) class Distro(debian.Distro): pass