summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2008-01-04 12:48:47 -0600
committerClark Williams <williams@redhat.com>2008-01-04 12:48:47 -0600
commit15661ac0004d08a33a05f6d23fe9d884bfbb82e2 (patch)
tree64cc0f2fe099ecbf5d5db58f8996432b9cb80aaa
parentdbbadfc55ee1ee38412948e6efa45934d3321a8f (diff)
parent99cb911d9a4c5c9f80646347fcd4352f9deafbb0 (diff)
Merge branch 'master' of git+ssh://jcwillia@git.fedoraproject.org/git/hosted/mock
-rw-r--r--py/mock/backend.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/mock/backend.py b/py/mock/backend.py
index d4d0eb4..135a591 100644
--- a/py/mock/backend.py
+++ b/py/mock/backend.py
@@ -267,6 +267,7 @@ class Root(object):
prevMask = os.umask(0000)
devFiles = (
(stat.S_IFCHR | 0666, os.makedev(1, 3), "dev/null"),
+ (stat.S_IFCHR | 0666, os.makedev(1, 7), "dev/full"),
(stat.S_IFCHR | 0666, os.makedev(1, 5), "dev/zero"),
(stat.S_IFCHR | 0666, os.makedev(1, 8), "dev/random"),
(stat.S_IFCHR | 0444, os.makedev(1, 9), "dev/urandom"),