mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 14:49:01 +02:00
9 lines
218 B
Bash
Executable File
9 lines
218 B
Bash
Executable File
if [ "$(id -u)" != "0" ]; then
|
|
echo "You must be root to uninstall" 1>&2
|
|
exit 1
|
|
fi
|
|
rm -f /usr/local/sbin/writelatex-git-bridge.jar &&\
|
|
rm -f /etc/init.d/wlgb &&\
|
|
rm -rf /etc/wlgb
|
|
/usr/sbin/update-rc.d -f wlgb remove
|