#!/bin/sh USER=agk GROUP=agk ask() { local question default answer question=$1 default=$2 if [ -z "${PACKAGE_BUILDING}" ]; then read -p "${question} [${default}]? " answer fi if [ x${answer} = x ]; then answer=${default} fi echo ${answer} } yesno() { local dflt question answer question=$1 dflt=$2 while :; do answer=$(ask "${question}" "${dflt}") case "${answer}" in [Yy]*) return 0;; [Nn]*) return 1;; esac echo "Please answer yes or no." done } delete_account() { local u g u=$1 g=$2 if yesno "Do you want me to remove group \"${g}\"" y; then pw groupdel -n ${g} echo "Done." fi if yesno "Do you want me to remove user \"${u}\"" y; then pw userdel -n ${u} echo "Done." fi } [ "$2" = DEINSTALL ] || exit 0 export PATH=/bin:/usr/bin:/usr/sbin if ps -axc | grep -q AquaGatekeeper; then if yesno "There are some AquaGatekeeper processes running. Shall I kill them" y then killall AquaGatekeeper sleep 2 else echo "OK ... I hope you know what you are doing." fi fi delete_account ${USER} ${GROUP} exit 0 reebsd-ports-gnome' href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/'>freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/www/wwwstat
Commit message (Expand)AuthorAgeFilesLines
* Use variables SITE_PERL and SITE_PERL_REL where appropriate.skv2009-02-241-1/+1
* - Add SHA256pav2005-11-261-0/+2
* Chase updated mastersite. It's only been wrong for a few days shy oflinimon2005-10-031-1/+1