1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
# Replace existing guest in EL7.
# Enable systemd services.
systemctl enable google-accounts-daemon.service
systemctl enable google-clock-skew-daemon.service
systemctl enable google-instance-setup.service
systemctl enable google-network-daemon.service
systemctl enable google-shutdown-scripts.service
systemctl enable google-startup-scripts.service
# Run instance setup manually.
/usr/bin/google_instance_setup
# Start daemons.
systemctl start --no-block google-accounts-daemon
systemctl start --no-block google-clock-skew-daemon
systemctl start --no-block google-network-daemon
|