mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-23 00:23:13 +01:00
12 lines
158 B
Bash
12 lines
158 B
Bash
#!/bin/sh -e
|
|
|
|
if [ "$1" = "remove" ] ; then
|
|
BIN=/usr/bin
|
|
update-alternatives --remove \
|
|
vncviewer $BIN/xtigervncviewer
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|