Hi,

I have this error with my Vagrant config:

```
Job for network.service failed because the control process exited with error code
```

My Vagrant file:

```
Vagrant.configure("2") do |config|
config.vm.box = "centos/atomic-host"
config.vm.hostname = "ceph-client-2"
config.vm.network "private_network", type: "dhcp"
end
```

full log: https://gist.github.com/harobed/84d275b30ab928e4753b2c772425feca

With `journalctl -xe' I have:

```
Dec 08 10:16:30 ceph-client-2 sshd[12198]: lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
```

How can I fix that?

Best regards,
Stéphane