| OLD | NEW |
| 1 install | 1 install |
| 2 KVM_TEST_MEDIUM | 2 KVM_TEST_MEDIUM |
| 3 text | 3 text |
| 4 reboot | 4 reboot |
| 5 lang en_US.UTF-8 | 5 lang en_US.UTF-8 |
| 6 keyboard us | 6 keyboard us |
| 7 key --skip | 7 key --skip |
| 8 network --bootproto dhcp | 8 network --bootproto dhcp |
| 9 rootpw 123456 | 9 rootpw 123456 |
| 10 firewall --enabled --ssh | 10 firewall --enabled --ssh |
| 11 selinux --enforcing | 11 selinux --enforcing |
| 12 timezone --utc America/New_York | 12 timezone --utc America/New_York |
| 13 firstboot --disable | 13 firstboot --disable |
| 14 bootloader --location=mbr --append="console=tty0 console=ttyS0,115200" | 14 bootloader --location=mbr --append="console=tty0 console=ttyS0,115200" |
| 15 zerombr | 15 zerombr |
| 16 clearpart --all --initlabel | 16 clearpart --all --initlabel |
| 17 autopart | 17 autopart |
| 18 reboot | 18 reboot |
| 19 poweroff |
| 19 | 20 |
| 20 %packages | 21 %packages |
| 21 @base | 22 @base |
| 22 @development-libs | 23 @development-libs |
| 23 @development-tools | 24 @development-tools |
| 24 ntpdate | 25 ntpdate |
| 25 | 26 |
| 26 %post --interpreter /usr/bin/python | 27 %post --interpreter /usr/bin/python |
| 27 import socket, os | 28 import socket, os |
| 28 os.system('dhclient') | 29 os.system('dhclient') |
| 29 os.system('chkconfig sshd on') | 30 os.system('chkconfig sshd on') |
| 30 os.system('iptables -F') | 31 os.system('iptables -F') |
| 31 os.system('echo 0 > /selinux/enforce') | 32 os.system('echo 0 > /selinux/enforce') |
| 32 server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | 33 server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 33 server.bind(('', 12323)) | 34 server.bind(('', 12323)) |
| 34 server.listen(1) | 35 server.listen(1) |
| 35 (client, addr) = server.accept() | 36 (client, addr) = server.accept() |
| 36 client.send("done") | 37 client.send("done") |
| 37 client.close() | 38 client.close() |
| 38 | 39 |
| OLD | NEW |