Added tag 0.94 for changeset 288451ce72af278f83feb269f9f4177e79e1f7ba
[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