Lines Matching refs:self
85 def build_image(self, img): argument
86 cimg = self._download_with_cache(self.link, sha512sum=self.csum)
90 self.print_step("Preparing iso and disk image")
92 self.exec_qemu_img("create", "-f", "qcow2", img_tmp, self.size)
94 self.print_step("Booting installer")
95 self.boot(img_tmp, extra_args = [
99 self.console_init()
100 self.console_wait_send("3. Drop to boot prompt", "3")
101 self.console_wait_send("> ", "consdev com0\n")
102 self.console_wait_send("> ", "boot\n")
104 self.console_wait_send("Terminal type", "xterm\n")
105 self.console_wait_send("a: Installation messages", "a\n")
106 self.console_wait_send("a: Install NetBSD", "a\n")
107 self.console_wait("Shall we continue?")
108 self.console_wait_send("b: Yes", "b\n")
110 self.console_wait_send("a: ld0", "a\n")
111 self.console_wait_send("a: Guid Partition Table", "a\n")
112 self.console_wait_send("a: This is the correct", "a\n")
113 self.console_wait_send("b: Use default part", "b\n")
114 self.console_wait_send("x: Partition sizes ok", "x\n")
115 self.console_wait("Shall we continue?")
116 self.console_wait_send("b: Yes", "b\n")
118 self.console_wait_send("b: Use serial port com0", "b\n")
119 self.console_wait_send("f: Set serial baud rate", "f\n")
120 self.console_wait_send("a: 9600", "a\n")
121 self.console_wait_send("x: Continue", "x\n")
123 self.console_wait_send("a: Full installation", "a\n")
124 self.console_wait_send("a: CD-ROM", "a\n")
126 self.print_step("Installation started now, this will take a while")
127 self.console_wait_send("Hit enter to continue", "\n")
129 self.console_wait_send("d: Change root password", "d\n")
130 self.console_wait_send("a: Yes", "a\n")
131 self.console_wait("New password:")
132 self.console_send("%s\n" % self._config["root_pass"])
133 self.console_wait("New password:")
134 self.console_send("%s\n" % self._config["root_pass"])
135 self.console_wait("Retype new password:")
136 self.console_send("%s\n" % self._config["root_pass"])
138 self.console_wait_send("o: Add a user", "o\n")
139 self.console_wait("username")
140 self.console_send("%s\n" % self._config["guest_user"])
141 self.console_wait("to group wheel")
142 self.console_wait_send("a: Yes", "a\n")
143 self.console_wait_send("a: /bin/sh", "a\n")
144 self.console_wait("New password:")
145 self.console_send("%s\n" % self._config["guest_pass"])
146 self.console_wait("New password:")
147 self.console_send("%s\n" % self._config["guest_pass"])
148 self.console_wait("Retype new password:")
149 self.console_send("%s\n" % self._config["guest_pass"])
151 self.console_wait_send("a: Configure network", "a\n")
152 self.console_wait_send("a: vioif0", "a\n")
153 self.console_wait_send("Network media type", "\n")
154 self.console_wait("autoconfiguration")
155 self.console_wait_send("a: Yes", "a\n")
156 self.console_wait_send("DNS domain", "localnet\n")
157 self.console_wait("Are they OK?")
158 self.console_wait_send("a: Yes", "a\n")
159 self.console_wait("installed in /etc")
160 self.console_wait_send("a: Yes", "a\n")
162 self.console_wait_send("e: Enable install", "e\n")
165 self.console_wait_send("f: Proxy", "f\n")
166 self.console_wait("Proxy")
167 self.console_send("%s\n" % proxy)
168 self.console_wait_send("x: Install pkgin", "x\n")
169 self.console_init(1200)
170 self.console_wait_send("Hit enter to continue", "\n")
171 self.console_init()
173 self.console_wait_send("g: Enable sshd", "g\n")
174 self.console_wait_send("x: Finished conf", "x\n")
175 self.console_wait_send("Hit enter to continue", "\n")
177 self.print_step("Installation finished, rebooting")
178 self.console_wait_send("d: Reboot the computer", "d\n")
182 self.console_ssh_init(prompt, self._config["guest_user"],
183 self._config["guest_pass"])
184 self.console_wait_send(prompt, "exit\n")
188 self.console_ssh_init(prompt, "root", self._config["root_pass"])
189 self.console_sshd_config(prompt)
192 self.console_wait(prompt)
193 self.console_send("echo 'chmod 666 /dev/rld1a' >> /etc/rc.local\n")
196 self.console_wait(prompt)
197 self.console_send("echo security.pax.mprotect.enabled=0 >> /etc/sysctl.conf\n")
199 self.print_step("Configuration finished, rebooting")
200 self.console_wait_send(prompt, "reboot\n")
201 self.console_wait("login:")
202 self.wait_ssh()
204 self.print_step("Installing packages")
205 self.ssh_root_check("pkgin update\n")
206 self.ssh_root_check("pkgin -y install %s\n" % " ".join(self.pkgs))
209 self.ssh_root(self.poweroff)
210 self.console_wait("entering state S5")
211 self.wait()
215 self.print_step("All done")