]> piware.de Git - bin.git/blob - vmdebdev
33efdf78230b59fc139453702d66d8867ff94806
[bin.git] / vmdebdev
1 #!/usr/bin/expect -f
2 # create a Debian/Ubuntu development VM based on a standard autopkgtest VM
3
4 set timeout -1
5
6 set prompt "(%|#|\\$) $"
7 set sshkey [read [open "~/.ssh/id_rsa.pub"]]
8 set timeout 60
9
10 # Start the guest VM
11 set img [lrange $argv 0 0]
12 if { $img == "" } { set img "/srv/vm/autopkgtest-sid.img" }
13 spawn vm $img -nographic -snapshot -virtfs local,id=srv,path=/srv,security_model=none,mount_tag=srv,readonly \
14               -virtfs local,id=etcschroot,path=/etc/schroot,security_model=none,mount_tag=etcschroot,readonly
15
16 # Login, and get root shell
17 expect {
18     # autopkgtest Debian machine only has a root login
19     "Debian GNU" { set user "root"; set sudo ""; set getroot "" }
20     "Ubuntu" { set user "ubuntu"; set password "ubuntu"; set getroot "sudo -n -i" }
21 }
22
23 expect "login: "
24 send "$user\r"
25
26 expect {
27     "Password" { send "$password\r"; exp_continue }
28     -re $prompt
29 }
30
31 send "export TERM=xterm; $getroot\r"
32 expect -re $prompt
33
34 # install wanted packages; openssh postinst does funny things to the terminal, so only give it pipes
35 send "DEBIAN_FRONTEND=noninteractive apt-get install -o Dpkg::Options::=--force-confnew -y git-buildpackage libwww-perl less vim lintian debhelper manpages-dev git dput pristine-tar bash-completion libnss-myhostname lptools python-keyrings.alt wget gnupg2 ubuntu-dev-tools python3-debian qemu-kvm qemu-utils schroot sbuild locales openssh-server </dev/null 2>&1 | cat\r"
36 expect -re $prompt
37
38 # set up user
39 send "deluser --remove-home test; adduser --disabled-password --gecos 'Martin Pitt' martin; echo 'martin:a' | chpasswd; adduser martin sbuild\r"
40 expect -re $prompt
41
42 send "echo 'martin ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/martin; update-locale LANG=C.UTF-8; touch /var/lib/sudo/lectured/martin\r"
43 expect -re $prompt
44 send "mkdir /home/martin/.ssh; echo '$sshkey' > /home/martin/.ssh/authorized_keys; chown -R martin:martin /home/martin/.ssh\r"
45 expect -re $prompt
46
47 # mount home, /srv, and schroot config from host; TODO: move to NFS?
48 send "mkdir /home/martin/h; printf 'home /home/martin/h 9p trans=virtio,access=any,nofail,ro 0 0\nsrv /srv 9p trans=virtio,access=any,nofail,ro 0 0\netcschroot /etc/schroot 9p trans=virtio,access=any,nofail,ro 0 0\n' >> /etc/fstab; mount /home/martin/h; mount /srv; mount /etc/schroot\r"
49 expect -re $prompt
50 send "(cd /home/martin; ln -s h/.gbp.conf; ln -s h/.vimrc)\r"
51 expect -re $prompt
52
53 #
54 ## set up lxd if available (on Ubuntu)
55 send "(apt-get install -y lxd </dev/null && adduser martin lxd && yes '' | lxd init || true) 2>&1 | cat\r"
56 expect -re $prompt
57
58 interact