Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Execute Script Before Shutdown Sequence (GUI Still Available)

  1. #1
    Join Date
    Nov 2005
    Beans
    97
    Distro
    Ubuntu 16.04 Xenial Xerus

    Execute Script Before Shutdown Sequence (GUI Still Available)

    I made a simple script that issues a network signal to shut down a virtual machine running in vmplayer:

    Code:
    #!/bin/bash
    
    #if vm is running, send shutdown signal and wait 5m for shutdown.
    
    counter=1
    credentials="/home/<user>/Credentials/.vmcred"
    vm="<virtual machine name>"
    
    while  
      ps cax | grep vmware-vmx > /dev/null 2>&1
    do
      if [ $counter -eq 1 ]; then
        source "$credentials"
        net rpc shutdown -I "$vm" -U "$unpass"  #unpass defined in credentials file
      fi
      sleep 5
      if [ $counter -ge 60 ]; then
        echo "Virtual machine failed to shut down for some reason..."
        break
      fi
      echo "($counter) Virtual machine is shutting down..."
      counter=$[counter + 1]
    done
    
    exit 0
    The script works great for routines like automated backups of the vm. But I would like to execute this script as part of the shutdown sequence for Ubuntu 13.10. I have tried adding this script to .bash_logout and rc0.d/rc6.d already with no success. The problem is that the script needs to happen before the kill signal is sent to any process, and before the actual desktop session is closed. In short, when a shutdown is requested, this script needs to run first and then continue a normal shutdown process.

    Is this possible, and if so, then how?
    "The Linux philosophy is to laugh in the face of danger. Oops. Wrong one. Do it yourself. That's it." -Linus Torvalds

  2. #2
    Join Date
    Dec 2009
    Beans
    195

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    Maybe it's easier to incorporate a shutdown command right after your main script:

    Code:
    #!/bin/bash
    
    #if vm is running, send shutdown signal and wait 5m for shutdown.
    
    counter=1
    credentials="/home/<user>/Credentials/.vmcred"
    vm="<virtual machine name>"
    
    while ps cax | grep vmware-vmx > /dev/null 2>&1
     do
    
     [...]
    
    done
    
    # exit 0
    
    ## Final check and shutdown.
    
    pgrep vmware-vmx || sudo shutdown -h now
    
    ## or simply shutdown no checks.
    # sudo shutdown -h now
    That's how I shutdown (actually suspend) my VMs and then go for a full shutdown in my setup.

  3. #3
    Join Date
    Nov 2005
    Beans
    97
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    Quote Originally Posted by erind View Post
    Maybe it's easier to incorporate a shutdown command right after your main script:
    That would work if I could somehow modify the standard GUI shutdown to point to the main script. At least then I could try to remember to always shutdown via GUI (and not "shutdown -h now" from CLI). The implementation here is because I'll often shutdown the system and forget to bring down the virtual machine first. I'm trying to work out an automated graceful halt sequence.

    I'll see if I can figure that out...
    "The Linux philosophy is to laugh in the face of danger. Oops. Wrong one. Do it yourself. That's it." -Linus Torvalds

  4. #4
    Join Date
    Dec 2009
    Beans
    195

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    Quote Originally Posted by maxwellcom View Post
    [...]

    The implementation here is because I'll often shutdown the system and forget to bring down the virtual machine first. I'm trying to work out an automated graceful halt sequence.

    [...]
    I see, I've done that too. In my case I've created another custom shutdown icon (launcher) on the upper panel, that points to my special script that shuts down gracefully the VMs first then the whole system, and I rarely use the GUI shutdown. Never had any issues with my VMs since. Btw, I've also edited the sudoers file to include my script so I don't get prompted for password when shutting down.
    Not too complicated and it works for me, your mileage may vary.

  5. #5
    Join Date
    Nov 2005
    Beans
    97
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    Quote Originally Posted by erind View Post
    I've also edited the sudoers file to include my script so I don't get prompted for password when shutting down.
    Using this post I modified the script to allow a sudo shutdown and implemented a launcher - seems like it will do the trick. Thanks!

    Code:
    #if vm is running, send shutdown signal and wait 5m for shutdown.
    
    counter=1
    credentials="/home/<user>/Credentials/.vmcred"
    vm="<virtual machine name>"
    
    while  
      ps cax | grep vmware-vmx > /dev/null 2>&1
    do
      if [ $counter -eq 1 ]; then
        source "$credentials"
        net rpc shutdown -I "$vm" -U "$unpass"  #unpass defined in credentials file
      fi
      sleep 5
      if [ $counter -ge 60 ]; then
        echo "Virtual machine failed to shut down for some reason..."
        break
      fi
      echo "($counter) Virtual machine is shutting down..."
      counter=$[counter + 1]
    done
    
    #if vm is shutdown, issue system halt
    pgrep vmware-vmx || sudo /home/<user>/Script/syshalt.sh
    "The Linux philosophy is to laugh in the face of danger. Oops. Wrong one. Do it yourself. That's it." -Linus Torvalds

  6. #6
    Join Date
    Sep 2006
    Beans
    8,627
    Distro
    Ubuntu 14.04 Trusty Tahr

    upstart

    The 'ps cax | grep' clause could probably be replaced by a simple 'pgrep -x'

    As far as launching the script, have you considered an upstart script? Those can be set to be triggered in the event of a reboot or shutdown. Even a sequence relative to the other scripts can be specified, that it won't execute until another or others have finished.

  7. #7
    Join Date
    Nov 2005
    Beans
    97
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: upstart

    Quote Originally Posted by Lars Noodén View Post
    have you considered an upstart script?
    While originally researching a solution, I did come across that very link. It looks like a robust replacement for init.d and likely to allow the sort of controlled vm shutdown I'm trying to develop, but I wasn't clear on a couple things.

    First, Init.d (which I tried first) failed because while it executes shutdown scripts in sequence, I couldn't prevent the desktop session from being terminated first. Will upstart allow a shutdown script to run before any other changes to the system's state are initiated?

    Second, the vm shutdown process can take 20s or 5m; will upstart hold the shutdown process until the script has terminated, or will it start killing processes after a period of time?

    The solution erind provided above works great, so long as I initiate a manual shutdown. In other scenarios, such as remotely shutting down the host or a low-battery shutdown (it's a laptop), the vm is killed.
    "The Linux philosophy is to laugh in the face of danger. Oops. Wrong one. Do it yourself. That's it." -Linus Torvalds

  8. #8
    Join Date
    Sep 2006
    Beans
    8,627
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    It might be a matter of choosing to act on a different state for the other service, such as "stopping" I've only dabbled a little with upstart myself.

    Maybe "stop on stopping desktop-shutdown" (or "stop on starting desktop-shutdown" I'm not sure) or whatever lightdm.conf emits itself on shutdown.

  9. #9
    Join Date
    Jul 2013
    Location
    Wisconsin
    Beans
    4,952

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    /etc/init/lightdm.conf emits desktop-shutdown.
    Perhaps a pre-stop stanza there?

  10. #10
    Join Date
    Nov 2005
    Beans
    97
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Execute Script Before Shutdown Sequence (GUI Still Available)

    Quote Originally Posted by ian-weisser View Post
    /etc/init/lightdm.conf emits desktop-shutdown.
    Perhaps a pre-stop stanza there?
    I am very happy to report success.

    First, I created the script /home/<user>/Script/vmhalt:

    Code:
    #!/bin/bash
    
    # set primary variables
    credentials="/path/to/credentials/file/.vmcred"
    
    if pgrep -x vmware-vmx > /dev/null 2>&1; then
    
      # send vm shutdown signal with user credentials
      source "$credentials"
      net rpc shutdown -I "<vm>" -U "$unpass"  #unpass defined in credentials file
    
      # wait 5m for vm shutdown.
      counter=1
      while pgrep -x vmware-vmx > /dev/null 2>&1; do
        sleep 5
        if [ $counter -ge 60 ]; then
          break
        fi
        counter=$[counter + 1]
      done
    
    fi
    
    exit 0
    Next, I edited /etc/init/lightdm.conf. Directly underneath the line "emits desktop-shutdown" I added:

    Code:
    pre-stop script
        exec sudo -u <user> /home/<user>/Script/vmhalt
    end script
    The result is that any shutdown (graphical, shell or remote) will hold the desktop open, wait for the virtual machine to shutdown gracefully, and then continue with a normal shutdown.
    "The Linux philosophy is to laugh in the face of danger. Oops. Wrong one. Do it yourself. That's it." -Linus Torvalds

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •