]> git.phdru.name Git - extfs.d.git/commitdiff
Read-only filesystem.
authorOleg Broytman <phd@phdru.name>
Thu, 11 Nov 2010 13:01:53 +0000 (13:01 +0000)
committerOleg Broytman <phd@phdru.name>
Thu, 11 Nov 2010 13:01:53 +0000 (13:01 +0000)
git-svn-id: file:///home/phd/archive/SVN/mc-extfs/trunk@47 1a6e6372-1aea-0310-bd00-dc960550e1df

torrent

diff --git a/torrent b/torrent
index 12310253730260f3217aafb8cd76a4bb2de7b534..43bb2b74dc1b4395b5320e1362e34fcbb9d7b5da 100755 (executable)
--- a/torrent
+++ b/torrent
@@ -162,17 +162,17 @@ def mctorrent_copyout():
 
 def mctorrent_copyin():
     """Put a file to the VFS"""
-    sys.exit("Torrent VFS doesn't support adding files")
+    sys.exit("Torrent VFS doesn't support adding files (read-only filesystem)")
 
 def mctorrent_rm():
     """Remove a file from the VFS"""
-    sys.exit("Torrent VFS doesn't support removing files/directories")
+    sys.exit("Torrent VFS doesn't support removing files/directories (read-only filesystem)")
 
 mctorrent_rmdir = mctorrent_rm
 
 def mctorrent_mkdir():
     """Create a directory in the VFS"""
-    sys.exit("Torrent VFS doesn't support creating directories")
+    sys.exit("Torrent VFS doesn't support creating directories (read-only filesystem)")
 
 
 def torrent_error(error_str):