summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-extended/cloud-init/cloud-init/distros-add-windriver-skeleton-distro-file.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-extended/cloud-init/cloud-init/distros-add-windriver-skeleton-distro-file.patch')
-rw-r--r--meta-openstack/recipes-extended/cloud-init/cloud-init/distros-add-windriver-skeleton-distro-file.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/meta-openstack/recipes-extended/cloud-init/cloud-init/distros-add-windriver-skeleton-distro-file.patch b/meta-openstack/recipes-extended/cloud-init/cloud-init/distros-add-windriver-skeleton-distro-file.patch
deleted file mode 100644
index f52faf3..0000000
--- a/meta-openstack/recipes-extended/cloud-init/cloud-init/distros-add-windriver-skeleton-distro-file.patch
+++ /dev/null
@@ -1,44 +0,0 @@
1From 6ad7caf6410237f3b1bed6ff4d9f0423e69afcd6 Mon Sep 17 00:00:00 2001
2From: Bruce Ashfield <bruce.ashfield@windriver.com>
3Date: Mon, 10 Mar 2014 00:57:18 -0400
4Subject: [PATCH] distros: add windriver skeleton distro file
5
6Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
7---
8 cloudinit/distros/windriver.py | 24 ++++++++++++++++++++++++
9 1 file changed, 24 insertions(+)
10 create mode 100644 cloudinit/distros/windriver.py
11
12diff --git a/cloudinit/distros/windriver.py b/cloudinit/distros/windriver.py
13new file mode 100644
14index 000000000000..8eec13fe2207
15--- /dev/null
16+++ b/cloudinit/distros/windriver.py
17@@ -0,0 +1,24 @@
18+# vi: ts=4 expandtab
19+#
20+# Copyright (C) 2014 WindRiver
21+#
22+# This program is free software: you can redistribute it and/or modify
23+# it under the terms of the GNU General Public License version 3, as
24+# published by the Free Software Foundation.
25+#
26+# This program is distributed in the hope that it will be useful,
27+# but WITHOUT ANY WARRANTY; without even the implied warranty of
28+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29+# GNU General Public License for more details.
30+#
31+# You should have received a copy of the GNU General Public License
32+# along with this program. If not, see <http://www.gnu.org/licenses/>.
33+
34+from cloudinit.distros import debian
35+from cloudinit import log as logging
36+
37+LOG = logging.getLogger(__name__)
38+
39+
40+class Distro(debian.Distro):
41+ pass
42--
431.7.10.4
44