summaryrefslogtreecommitdiffstats
path: root/openstack/common/service.py
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2012-08-11 11:14:43 +1000
committerAngus Salkeld <asalkeld@redhat.com>2012-08-15 08:26:16 +1000
commitc8f9afd4c0de0883e7b64c4d219a47aa88a0d32a (patch)
tree77b60fa6ec87a7370a5030e01e51392893728b50 /openstack/common/service.py
parent0d446cd6cdaf968b830f51fba2e547da2d98a65b (diff)
downloadoslo-c8f9afd4c0de0883e7b64c4d219a47aa88a0d32a.tar.gz
oslo-c8f9afd4c0de0883e7b64c4d219a47aa88a0d32a.tar.xz
oslo-c8f9afd4c0de0883e7b64c4d219a47aa88a0d32a.zip
Move manager.py and service.py into common.
- Just start with the skeleton classes. Part of blueprint service-infrastructure Change-Id: I90fbff3805455d9d82aacf43257d74e4cb443042 Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
Diffstat (limited to 'openstack/common/service.py')
-rw-r--r--openstack/common/service.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/openstack/common/service.py b/openstack/common/service.py
new file mode 100644
index 0000000..a0a8e5a
--- /dev/null
+++ b/openstack/common/service.py
@@ -0,0 +1,30 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2010 United States Government as represented by the
+# Administrator of the National Aeronautics and Space Administration.
+# Copyright 2011 Justin Santa Barbara
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+"""Generic Node base class for all workers that run on hosts."""
+
+
+class Service(object):
+ """Service object for binaries running on hosts.
+
+ A service takes a manager."""
+
+ def __init__(self, host, manager, *args, **kwargs):
+ self.host = host
+ self.manager = manager