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

后端 未结 4 2171
北荒
北荒 2021-02-12 11:47

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 t

相关标签:
4条回答
  • 2021-02-12 12:21

    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.
    
    0 讨论(0)
  • 2021-02-12 12:24

    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.

    0 讨论(0)
  • 2021-02-12 12:25

    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.

    0 讨论(0)
  • 2021-02-12 12:29

    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
    
    0 讨论(0)
提交回复
热议问题