sunterlib/scsh/afs
Martin Gasbichler 1d23202be6 Add loading instructions 2004-03-27 07:44:22 +00:00
..
AUTHORS
BLURB
NEWS
README Add loading instructions 2004-03-27 07:44:22 +00:00
afs-fs.scm
packages.scm Moved package and interface definition to packages.scm. Generate load scripts. 2004-03-14 22:59:57 +00:00
pkg-def.scm Insert (install-lib-version (1 0)) 2004-03-27 06:59:16 +00:00

README

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

================================================================================

After installation, use the switch

-lel afs/load.scm

to load this library.

================================================================================

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".