]> scripts.mit.edu Git - www/raw.git/blob - faq/31.mdwn
Import from TextPattern
[www/raw.git] / faq / 31.mdwn
1 [[!meta title="Can my scripts write data somewhere?"]]
2 You can give your scripts permission to write data to
3 subdirectories of your Athena home directory by granting
4 appropriate AFS access to **daemon.scripts** (we provide sample
5 commands below).
6
7 Each scripts.mit.edu user can also write up to 10MB (or 10k inodes)
8 to /tmp. You should only write truly temporary data to /tmp.
9
10 Here are some commands that might be helpful:
11
12 The following command will grant the script server write access
13 to  
14 your current directory (cd into the directory that you want to
15 write to and  
16 then run this command):
17     fs sa . daemon.scripts write
18
19 The following command will grant the script server write access to
20 all subdirectories of your current directory (you could cd into a
21 particular directory and then run this command in order to grant
22 the script server write access to all subdirectories of that
23 directory):
24     athrun scripts fssar daemon.scripts write
25
26 The following command will list the access control list for the
27 current directory:
28     fs la .
29
30
31