We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fc9392 commit 25e63ddCopy full SHA for 25e63dd
fs-test/04-add-new-user-and-retest.sh
@@ -20,7 +20,10 @@ su -c 'touch customer-project/dba2' dba2
20
su -c 'touch customer-project/dba2' alice \
21
|| die "alice can't modify dba2's file."
22
23
+# The anonymous user can read dba2's file.
24
+su -c 'cat customer-project/dba2' anonymous \
25
+ || die "anonymous can't read dba2's file."
26
+
27
# dba2 should also be able to modify dba1's files
-su -c 'touch dba-project/dba1' dba1
28
su -c 'touch dba-project/dba1' dba2 \
29
|| die "dba2 can't modify dba1's file."
0 commit comments