diff options
author | Adin Scannell <ascannell@google.com> | 2021-08-05 11:15:14 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-05 11:17:44 -0700 |
commit | 919a7da6d792dea17cf59d66fb303788b7e7dbab (patch) | |
tree | 193ac2e98ec36249c311bee17839c7c0f91f1049 /debian | |
parent | 43e3d29b9700a5d84c3d16d265849b011a267c12 (diff) |
Reload the configuration during postinst rather than restarting.
Fixes #6408
PiperOrigin-RevId: 388978814
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/postinst.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/postinst.sh b/debian/postinst.sh index 6a326f823..b387b9f22 100755 --- a/debian/postinst.sh +++ b/debian/postinst.sh @@ -22,7 +22,7 @@ fi if [ -f /etc/docker/daemon.json ]; then runsc install if systemctl is-active -q docker; then - systemctl restart docker || echo "unable to restart docker; you must do so manually." >&2 + systemctl reload docker || echo "unable to reload docker; you must do so manually." >&2 fi fi |