[Checkins] SVN: zc.recipe.deployment/trunk/src/zc/recipe/deployment Converted module file to a package

Jim Fulton jim at zope.com
Thu Jan 11 11:04:18 EST 2007


Log message for revision 71923:
  Converted module file to a package

Changed:
  A   zc.recipe.deployment/trunk/src/zc/recipe/deployment/
  A   zc.recipe.deployment/trunk/src/zc/recipe/deployment/__init__.py
  D   zc.recipe.deployment/trunk/src/zc/recipe/deployment.py

-=-
Copied: zc.recipe.deployment/trunk/src/zc/recipe/deployment/__init__.py (from rev 71922, zc.recipe.deployment/trunk/src/zc/recipe/deployment.py)

Deleted: zc.recipe.deployment/trunk/src/zc/recipe/deployment.py
===================================================================
--- zc.recipe.deployment/trunk/src/zc/recipe/deployment.py	2007-01-11 11:08:46 UTC (rev 71922)
+++ zc.recipe.deployment/trunk/src/zc/recipe/deployment.py	2007-01-11 16:04:17 UTC (rev 71923)
@@ -1,70 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2005 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Create a system deployment for an application
-
-$Id: deployment.py 14934 2006-11-10 23:57:33Z jim $
-"""
-
-import os, pwd, shutil
-
-class Recipe:
-
-    def __init__(self, buildout, name, options):
-        self.name, self.options = name, options
-        options['run-directory'] = os.path.join(options.get('run', '/var/run'),
-                                                name)
-        options['log-directory'] = os.path.join(options.get('log', '/var/log'),
-                                                name)
-        options['etc-directory'] = os.path.join(options.get('etc', '/etc'),
-                                                name)
-
-    def make_dirs(self, name, uid, gid, created):
-        # modified from standard lib
-        head, tail = os.path.split(name)
-        if not tail:
-            head, tail = os.path.split(head)
-        if head and tail and not os.path.exists(head):
-            self.make_dirs(head, uid, gid, created)
-            if tail == os.curdir: # xxx/newdir/. exists if xxx/newdir exists
-                return
-        os.mkdir(name, 0755)
-        created.append(name)
-        os.chown(name, uid, gid)
-        
-    def install(self):
-        options = self.options
-        user = options.get('user')
-        if user:
-            uid, gid = pwd.getpwnam(user)[2:4]
-        else: 
-            uid = os.getuid()
-            gid = os.getgid()
-        created = []
-        try:
-            for d in 'run', 'log', 'etc':
-                d = options[d+'-directory']
-                if not os.path.isdir(d):
-                    self.make_dirs(d, uid, gid, created)
-            return created
-        except Exception, e:
-            for d in created:
-                try:
-                    shutil.rmtree(d)
-                except OSError:
-                    # parent directory may have already been removed
-                    pass
-            raise e
-
-    def update(self):
-        pass



More information about the Checkins mailing list