added poweroff.sh for pkg/open-vm-tools to allow shutdown from hypervisor

Signed-off-by: Isaac Rodman <isaac@eyz.us>
This commit is contained in:
Isaac Rodman 2017-09-16 10:39:23 -07:00
parent 6845f602dc
commit 38452aa742
2 changed files with 7 additions and 0 deletions

View File

@ -13,4 +13,7 @@ ENTRYPOINT []
CMD []
WORKDIR /
COPY --from=mirror /out/ /
COPY scripts /etc/vmware-tools/scripts
CMD ["/usr/bin/vmtoolsd"]
LABEL org.mobyproject.config='{"pid": "host", "capabilities": ["CAP_SYS_BOOT"]}'

View File

@ -0,0 +1,4 @@
#!/bin/sh
# send SIGTERM to the init system (PID 1), which causes a clean VM host-initiated shutdown
kill -s SIGTERM 1
exit 0