summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorChristian Rößler2015-08-10 16:45:37 +0200
committerChristian Rößler2015-08-10 16:45:37 +0200
commit89e5727e9c3854701f9e091e3030c5b29fd5c72b (patch)
tree2681f8af58ba2e7549c3cf04b781a5d603c8b288 /server
parent[ssh-auth-keys] Modified systemd-ssh_auth_keys to not exit when missing AUTH_... (diff)
downloadtm-scripts-89e5727e9c3854701f9e091e3030c5b29fd5c72b.tar.gz
tm-scripts-89e5727e9c3854701f9e091e3030c5b29fd5c72b.tar.xz
tm-scripts-89e5727e9c3854701f9e091e3030c5b29fd5c72b.zip
[auth-freiburg] Corr. linking of .local/share/applications/mimeapps.list
Diffstat (limited to 'server')
-rwxr-xr-xserver/modules/auth-freiburg/etc/profile.d/00-autostart.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/modules/auth-freiburg/etc/profile.d/00-autostart.sh b/server/modules/auth-freiburg/etc/profile.d/00-autostart.sh
index bb6cf848..cd67fad5 100755
--- a/server/modules/auth-freiburg/etc/profile.d/00-autostart.sh
+++ b/server/modules/auth-freiburg/etc/profile.d/00-autostart.sh
@@ -5,9 +5,9 @@ PERSISTENT_HOME_DIR="$HOME/PERSISTENT"
if [ -d "$PERSISTENT_HOME_DIR" ]; then
- # Persistent home was mounted, take care of some conveinience
+ # Persistent home was mounted, take care of some convenience
# Dirs
- for file in .vim .mozilla .thunderbird .config/chromium .config/htop .config/openslx .config/xfce4 .local/share/applications/mimeapps.list; do
+ for file in .vim .mozilla .thunderbird .config/chromium .config/htop .config/openslx .config/xfce4; do
[ -e "$TEMP_HOME_DIR/$file" ] && break
if [ "x$(dirname "$file")" != "x." ]; then
mkdir -p "$TEMP_HOME_DIR/$(dirname "$file")"
@@ -18,7 +18,7 @@ if [ -d "$PERSISTENT_HOME_DIR" ]; then
ln -s "$PERSISTENT_HOME_DIR/$file" "$TEMP_HOME_DIR/$file"
done
# Files
- for file in .bashrc .profile .vimrc .gitconfig; do
+ for file in .bashrc .profile .vimrc .gitconfig .local/share/applications/mimeapps.list; do
[ -e "$TEMP_HOME_DIR/$file" ] && break
if [ "x$(dirname "$file")" != "x." ]; then
mkdir -p "$TEMP_HOME_DIR/$(dirname "$file")"