[kernel] r9373 - people/waldi/dkt/lib/dkt/hooks
Bastian Blank
waldi at alioth.debian.org
Fri Aug 24 11:24:52 UTC 2007
Author: waldi
Date: Fri Aug 24 11:24:52 2007
New Revision: 9373
Log:
lib/dkt/hooks/interfaces.py: Update.
Modified:
people/waldi/dkt/lib/dkt/hooks/interfaces.py
Modified: people/waldi/dkt/lib/dkt/hooks/interfaces.py
==============================================================================
--- people/waldi/dkt/lib/dkt/hooks/interfaces.py (original)
+++ people/waldi/dkt/lib/dkt/hooks/interfaces.py Fri Aug 24 11:24:52 2007
@@ -10,7 +10,8 @@
pass
class IImagePrepare(IHookRunAll):
- pass
+ def image_prepare():
+ pass
class IImageTask(IHookRunAll):
pass
@@ -19,14 +20,18 @@
pass
class IBootConfigPrepare(IHookRunAll):
- pass
+ def boot_config_prepare():
+ pass
class IBootConfigPartition(IHookRunAll):
- pass
+ def boot_config_partition():
+ pass
class IBootConfigSort(IHookRunFirst):
- pass
+ def boot_config_sort():
+ pass
class IBootConfigDeploy(IHookRunFirst):
- pass
+ def boot_config_deploy():
+ pass
More information about the Kernel-svn-changes
mailing list