Added tag 0.98 for changeset 7b957b5b0c56
[grml-terminalserver.git] / rdir
1 #!/static/ash
2 # recreate the old dir structures
3
4 if [ -e /mylib -o -e /myusr ]; then
5   return 0
6 else
7   mv /lib /mylib
8   mv /usr /myusr
9   mv /lib~ /lib
10   mv /usr~ /usr
11 fi
12