After flashing the pibox v12 image, I couldn't reach the server by SSH.
When I hooked up a display and keyboard, I found out that sshd wasn't running, because the system had no host keys.
Running sudo ssh-keygen -A and sudo /etc/init.d/ssh start fixed it, so that first command should probably be included in the provision script.
After flashing the pibox v12 image, I couldn't reach the server by SSH. When I hooked up a display and keyboard, I found out that
sshd
wasn't running, because the system had no host keys.Running
sudo ssh-keygen -A
andsudo /etc/init.d/ssh start
fixed it, so that first command should probably be included in the provision script.