]> git.phdru.name Git - extfs.d.git/commitdiff
Version 1.0. rm, mkdir, rmdir.
authorOleg Broytman <phd@phdru.name>
Sun, 13 Jun 2004 13:26:57 +0000 (13:26 +0000)
committerOleg Broytman <phd@phdru.name>
Sun, 13 Jun 2004 13:26:57 +0000 (13:26 +0000)
git-svn-id: file:///home/phd/archive/SVN/mc-extfs/trunk@8 1a6e6372-1aea-0310-bd00-dc960550e1df

dummy

diff --git a/dummy b/dummy
index 0baad44d1922675295dadaa871d021acd95220a2..5e580b516787f431158ba05c089f780498aa1927 100755 (executable)
--- a/dummy
+++ b/dummy
@@ -9,9 +9,9 @@ License: GPL.
 
 """
 
 
 """
 
-__version__ = "0.3.0"
-__revision__ = "$Id: dummy,v 1.6 2004/06/13 10:23:20 phd Exp $"
-__date__ = "$Date: 2004/06/13 10:23:20 $"[7:-2]
+__version__ = "1.0.0"
+__revision__ = "$Id: dummy,v 1.7 2004/06/13 13:26:57 phd Exp $"
+__date__ = "$Date: 2004/06/13 13:26:57 $"[7:-2]
 __author__ = "Oleg Broytmann <phd@phd.pp.ru>"
 __copyright__ = "Copyright (C) 2004 PhiloSoft Design"
 
 __author__ = "Oleg Broytmann <phd@phd.pp.ru>"
 __copyright__ = "Copyright (C) 2004 PhiloSoft Design"
 
@@ -67,6 +67,36 @@ def mcdummy_copyin():
    real_file.close()
 
 
    real_file.close()
 
 
+def mcdummy_rm():
+   """Remove a file from the VFS"""
+   # Ignore the VFS name (sys.argv[2])
+   dummy_filename = sys.argv[3]
+
+   real_file = open(".dummy.tmp", 'a')
+   real_file.write("Remove %s\n" % dummy_filename)
+   real_file.close()
+
+
+def mcdummy_mkdir():
+   """Create a directory in the VFS"""
+   # Ignore the VFS name (sys.argv[2])
+   dummy_dirname = sys.argv[3]
+
+   real_file = open(".dummy.tmp", 'a')
+   real_file.write("Create %s\n" % dummy_dirname)
+   real_file.close()
+
+
+def mcdummy_rmdir():
+   """Remove a directory from the VFS"""
+   # Ignore the VFS name (sys.argv[2])
+   dummy_dirname = sys.argv[3]
+
+   real_file = open(".dummy.tmp", 'a')
+   real_file.write("Remove %s\n" % dummy_dirname)
+   real_file.close()
+
+
 g = globals()
 command = sys.argv[1]
 procname = "mcdummy_" + command
 g = globals()
 command = sys.argv[1]
 procname = "mcdummy_" + command