Revision 23918,
608 bytes
checked in by broder, 15 years ago
(diff) |
In thunderbird-config:
* Whitelist the AFS ACL on the Thunderbird profile instead of
blacklisting.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[23710] | 1 | #!/bin/sh |
---|
| 2 | |
---|
| 3 | if ! [ -d "$HOME/.mozilla-thunderbird" ]; then |
---|
| 4 | if [ -d "$HOME/.thunderbird" ] && ! [ -L "$HOME/.thunderbird" ]; then |
---|
| 5 | mv "$HOME/.thunderbird" "$HOME/.mozilla-thunderbird" |
---|
| 6 | ln -s "$HOME/.mozilla-thunderbird" "$HOME/.thunderbird" |
---|
| 7 | else |
---|
| 8 | mkdir -p "$HOME/.mozilla-thunderbird" |
---|
| 9 | fi |
---|
| 10 | |
---|
[23835] | 11 | if [ afs = "$DEBATHENA_HOME_TYPE" ]; then |
---|
[23918] | 12 | fs sa "$HOME/.mozilla-thunderbird" "$ATHENA_USER" all -clear |
---|
[23835] | 13 | fi |
---|
[23710] | 14 | fi |
---|
| 15 | : ${NAME:=$(getent passwd "$USER" | cut -d: -f5 | cut -d, -f1)} |
---|
| 16 | : ${POBOX:=$(hesinfo "${ATHENA_USER:-USER}" pobox | awk '{print $2}')} |
---|
| 17 | export NAME POBOX |
---|
| 18 | |
---|
| 19 | exec "$0.debathena-orig" "$@" |
---|
Note: See
TracBrowser
for help on using the repository browser.