commit - c70faec7d109a122d8b7357dc393dfc46478ea60
commit + f55b8bcf8328a36db0d9c8e123a078d1b6dfbba4
blob - 0c9f9045883ac6d2df95e283d8d02f6f5b925d41
blob + 973c93a0dc056bd524be0e4fff88ea52b358b6be
--- README.md
+++ README.md
- Over the cloud-init option in Proxmox (VM -> Cloud-init -> Edit -> Regenerate)
- Over a webserver reacheable from the VM
-*** CAVEATS: Proxmox is a linux server and their password hashing is different from the one we use in OpenBSD, so the password given
+> **Warning**
+> Proxmox is a linux server and their password hashing is different from the one we use in OpenBSD, so the password given
over Proxmox for the user won't work, use the ssh-key instead and set up a root password inside fart-init, or just use the default one
for root which is "fart-init"
If you will serve the files by Proxmox just fill the "Cloud-init" information as you want and regenerate it, that should be enough, if you
want to serve the files over a webserver, they should look like this:
+user-data:
```
$ cat user-data
#cloud-config
expire: False
```
+meta-data:
```
$ cat meta-data
instance-id: 999/fart-init
local-hostname: fart-init
```
-network-data - dhcp
+network-data - dhcp:
```
$ cat network-data
version: 1
search:
- 'fart.home'
```
-network-data - static
+
+network-data - static:
```
$ cat network-data
version: 1
During the first booting process you will see something like this:
-![alt text](https://github.com/gonzalo-/fart-init/blob/main/imgs/fart-init_booting.png?raw=true)
+![alt text](https://github.com/gonzalo-/fart-init/blob/main/img/fart-init_booting.png?raw=true)
And on the second boot:
-![alt text](https://github.com/gonzalo-/fart-init/blob/main/imgs/fart-init_booted.png?raw=true)
+![alt text](https://github.com/gonzalo-/fart-init/blob/main/img/fart-init_booted.png?raw=true)
Have fun!