Chromium Code Reviews| Index: remoting/host/installer/linux/debian/postinst |
| diff --git a/remoting/host/installer/linux/debian/postinst b/remoting/host/installer/linux/debian/postinst |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..68b8d5892978cc68d905af716edaa5a3ea0f2577 |
| --- /dev/null |
| +++ b/remoting/host/installer/linux/debian/postinst |
| @@ -0,0 +1,12 @@ |
| +#!/bin/bash |
| + |
| +set -e |
| + |
| +case $1 in |
| + "configure") |
| + echo "Shutting down remoting hosts (they will restart automatically)..." |
| + killall -q remoting_me2me_host || true |
| + ;; |
| +esac |
| + |
| +#DEBHELPER# |