sunterlib/scsh/afs
Anthony Carrico aeef47ae62 Moved package and interface definition to packages.scm. Generate load scripts. 2004-03-14 22:59:57 +00:00
..
AUTHORS Changed to new package system. 2004-03-10 18:30:44 +00:00
BLURB Automatically generate file DETAILS containing library details. 2003-03-11 06:13:58 +00:00
NEWS Changed to new package system. 2004-03-10 18:30:44 +00:00
README initial version 2003-02-20 21:53:09 +00:00
afs-fs.scm Check exit status of fs sa 2003-04-10 11:39:28 +00:00
packages.scm Moved package and interface definition to packages.scm. Generate load scripts. 2004-03-14 22:59:57 +00:00
pkg-def.scm Moved package and interface definition to packages.scm. Generate load scripts. 2004-03-14 22:59:57 +00:00

README

The structure afs-fs calls the fs command to obtain and manipulate
access control lists in AFS.

The access control list of a directory is represented as an alist of
username and the enumerated set afs-permissions.

(afs-permission perm) -> afs-permission     Syntax

Constructor for afs-permission. PERM is one of
read
list
insert
delete
write
lock
administer



(make-afs-permissions afs-permission-list) -> afs-permissions

Constructor for the enumerated set.



all-afs-permissions

afs-permissions including all AFS-PERMISSIONs



(afs-permissions? thing) -> boolean

Type predicate.


(afs-permissions<=? afs-permissions1 afs-permissions2) -> boolean

Returns #t if the permissions in AFS-PERMISSIONS1 are all included in
AFS-PERMISSIONS2, #f otherwise



(get-acl dir) -> afs-permissions

Returns the access control list of directory DIR.


(set-acl! dir acl) -> unspecific

Sets the access control list of directory DIR to ACL.


(add-acl! dir acl) -> unspecific

Adds the access control list ACL to the existing acl of directory DIR.



(set-fs-command! command) -> unspecific

Sets the executable to call. The default value is "fs".