diff options
Diffstat (limited to 'remoting/host/installer/linux')
-rwxr-xr-x | remoting/host/installer/linux/debian/postinst | 2 | ||||
-rwxr-xr-x | remoting/host/installer/linux/debian/preinst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/installer/linux/debian/postinst b/remoting/host/installer/linux/debian/postinst index 36ff5dc..91df906 100755 --- a/remoting/host/installer/linux/debian/postinst +++ b/remoting/host/installer/linux/debian/postinst @@ -29,7 +29,7 @@ case "$1" in # anything that would result in them losing state. if [ -f "$HASHES_FILE" ]; then if [ -d "$NOTIFIER_DIR" ]; then - if ! md5sum --status -c "$HASHES_FILE"; then + if ! md5sum --status -c "$HASHES_FILE" 2>/dev/null; then echo "Sending logout notification messages to virtual desktops." echo "$LOGOUT_MSG" > "$NOTIFIER_DIR/chrome-remote-desktop-logout" fi diff --git a/remoting/host/installer/linux/debian/preinst b/remoting/host/installer/linux/debian/preinst index faa3855..91c7c937 100755 --- a/remoting/host/installer/linux/debian/preinst +++ b/remoting/host/installer/linux/debian/preinst @@ -19,7 +19,7 @@ save_hash() { case "$1" in "install" | "upgrade") rm -f "$HASHES_FILE" - save_hash /usr/bin/me2me_virtual_host + save_hash /opt/google/chrome-remote-desktop ;; esac |