Is it possible to restart a machine when provisioning a machine using Vagrant and pickup where the script left off?

独自空忆成欢 提交于 2019-12-09 14:14:43

问题


I was reading a tutorial in bash where they said to restart the machine, there was no option to restart a service directly, it was a matter of restarting the machine, and then there were more commands after that that still needed to be run when provisioning.

So is there any way to restart a box amid provisioning and then pick up where you left off after that?


回答1:


As far as I know you can't have a single script/set of commands that would carry on where it left off if it attempts to restart the OS, such as:

  config.vm.provision "shell", inline: <<-SHELL
    echo $(date) > ~/rebootexample
    reboot
    echo $(date) >> ~/rebootexample
  SHELL

In this example the second echo call would not be carried out.

You could split the script/commands up and use a plugin such as vagrant reload.

An example snippet of a Vagrantfile to highlight its possible use:

  # execute code before reload
  config.vm.provision "shell", inline: <<-SHELL
     echo $(date) > ~/rebootexample
  SHELL

  # trigger reload
  config.vm.provision :reload

  # execute code after reload
  config.vm.provision "shell", inline: <<-SHELL
     echo $(date) >> ~/rebootexample
  SHELL



回答2:


I've never done this, but if I had to I would split the script into two pieces, one before restart that includes the restart command, then another that's post install.

The first one would also create a lock file.

The overall script would run the first script if the lock file didn't exist or run the second one if the file exists. This overall script would be set up for startup.




回答3:


One trick you can employ is to send restart signal and save rest of the provisioning work as a script to be run on boot:

config.vm.provision "shell", inline: <<-SHELL
  echo "Do your thing... DONE"
cat <<-RCLOCAL | sed -s 's_^      __' > /etc/rc.local
      #!/bin/bash
      echo "This will be run once on next boot and then it's destroyed and never run again"
      rm /etc/rc.local
RCLOCAL
  chmod o+x /etc/rc.local
  shutdown -r now #restart
SHELL

This was tested to work on debian 9, so you may need to enable services or find another way to get your code bootsrapped to run on the next boot if you're running something else.

Unfortunately you can't simply do:

config.vm.provision "shell", inline: "shutdown -r now"
config.vm.provision "shell", inline: "echo 'hello world'"

results in ==>
The SSH connection was unexpectedly closed by the remote end. This
usually indicates that SSH within the guest machine was unable to
properly start up. Please boot the VM in GUI mode to check whether
it is booting properly.



回答4:


Vagrant has a reboot option for provisioning, however, the reboot guest capabilities is currently not support for Linux.

You can check my plugin out here, https://github.com/secret104278/vagrant_reboot_linux/tree/master , I've implement the function for Linux to reboot.



来源:https://stackoverflow.com/questions/34910988/is-it-possible-to-restart-a-machine-when-provisioning-a-machine-using-vagrant-an

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!