45803d45a4
* Apply patch so gdm finds chown when installing a new theme. * Do not overwrite config files. * Mention that gdm2 cannot be started from /etc/ttys, and include an RC script to do the job instead. Submitted by: Franz Klammer <klammer@webonaut.com> (chown patch)
21 lines
203 B
Bash
21 lines
203 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PREFIX=%%PREFIX%%
|
|
|
|
case "$1" in
|
|
start)
|
|
${PREFIX}/bin/gdm
|
|
;;
|
|
stop)
|
|
/usr/bin/killall gdm 2>/dev/null
|
|
;;
|
|
*)
|
|
echo "Usage: `basename $0` start | stop"
|
|
exit 64
|
|
;;
|
|
|
|
esac
|
|
|
|
exit 0
|