7 lines
136 B
Bash
7 lines
136 B
Bash
#!/bin/sh
|
|
if [ -e /usr/lib/xrdp/xrdp ]; then
|
|
if [ -e /etc/init.d/xrdp_control.sh ]; then
|
|
/etc/init.d/xrdp_control.sh stop
|
|
fi
|
|
fi
|