summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/Tools/POSIX.py
diff options
context:
space:
mode:
authorSol Jerome <solj@ices.utexas.edu>2009-09-09 22:42:58 +0000
committerSol Jerome <solj@ices.utexas.edu>2009-09-09 22:42:58 +0000
commitcbf331efad0597d0843518ea4a685f27750cfeba (patch)
treeaf2e2ea5108569d3a69f1e85611616c597bb26f5 /src/lib/Client/Tools/POSIX.py
parentfce273a0e8fda3776d917f3f254b566a08c31ceb (diff)
downloadbcfg2-cbf331efad0597d0843518ea4a685f27750cfeba.tar.gz
bcfg2-cbf331efad0597d0843518ea4a685f27750cfeba.tar.bz2
bcfg2-cbf331efad0597d0843518ea4a685f27750cfeba.zip
POSIXCompat: Change name of Compat plugin to POSIXCompat
Signed-off-by: Sol Jerome <solj@ices.utexas.edu> git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5425 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client/Tools/POSIX.py')
-rw-r--r--src/lib/Client/Tools/POSIX.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/Client/Tools/POSIX.py b/src/lib/Client/Tools/POSIX.py
index 610305a09..81471f910 100644
--- a/src/lib/Client/Tools/POSIX.py
+++ b/src/lib/Client/Tools/POSIX.py
@@ -79,12 +79,11 @@ def isString(strng):
class POSIX(Bcfg2.Client.Tools.Tool):
'''POSIX File support code'''
name = 'POSIX'
- __handles__ = [('ConfigFile', None), ('ConfigFile', 'Compat'),
- ('Directory', None), ('Path', 'ConfigFile'),
- ('Path', 'Device'), ('Path', 'Directory'),
- ('Path', 'HardLink'), ('Path', 'Perms'),
- ('Path', 'SymLink'), ('Permissions', None),
- ('SymLink', None)]
+ __handles__ = [('ConfigFile', None), ('Directory', None),
+ ('Path', 'ConfigFile'), ('Path', 'Device'),
+ ('Path', 'Directory'), ('Path', 'HardLink'),
+ ('Path', 'Perms'), ('Path', 'SymLink'),
+ ('Permissions', None), ('SymLink', None)]
__req__ = {'ConfigFile': ['name', 'owner', 'group', 'perms'],
'Directory': ['name', 'owner', 'group', 'perms'],
'Path': ['name', 'type'],