diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-05-28 20:45:09 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-05-28 20:45:09 +0200 |
commit | f7cbfea8df81ee98bd0184567daa96ae814bfd51 (patch) | |
tree | cbfeae8334bdc5e46c60debc9a34c3c7ab5b1fbb | |
parent | 21a9711e89c4d50723b19963a8f81ff9417cc5f8 (diff) |
zshrc vm() fixes
-rw-r--r-- | zshrc | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -102,7 +102,7 @@ ausrede() { } vm() { - SLEEP=1 + SLEEP=2 if [ "$1" = "winxp" ]; then VBoxManage startvm "Windows XP Pro SP1" -type vrdp sleep $SLEEP @@ -115,10 +115,6 @@ vm() { VBoxManage startvm "Windows Server 2003 Enterprise" -type vrdp sleep $SLEEP rdesktop-vrdp -k de localhost - elif [ "$1" = "pdc" ]; then - VBoxManage startvm "Samba PDC mit LDAP" -type vrdp - sleep $SLEEP - rdesktop-vrdp -k de localhost elif [ "$1" = "sid" ]; then VBoxManage startvm "Debian Sid" -type vrdp sleep $SLEEP @@ -128,6 +124,5 @@ vm() { echo "win2003" echo "freebsd" echo "sid" - echo "pdc" fi } |