mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-20 09:39:08 +00:00
5 lines
126 B
Bash
Executable File
5 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
# send SIGTERM to the init system (PID 1), which causes a clean VM host-initiated shutdown
|
|
kill -s SIGTERM 1
|
|
exit 0
|