Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update Qt to 5.6.2 [1,2] | tcberner | 2016-10-28 | 1 | -0/+1 |
* | Update the Qt5 ports to 5.6.1. | rakuco | 2016-09-17 | 1 | -0/+24 |
#!/bin/sh # # $FreeBSD: /tmp/pcvs/ports/news/husky-base/Attic/pkg-install,v 1.2 2003-01-21 10:14:47 fjoe Exp $ # PKG_PREFIX=${PKG_PREFIX:=/usr/local} BATCH=${BATCH:=no} ask() { local question default answer question=$1 default=$2 if [ -z "${PACKAGE_BUILDING}" -a x${BATCH} = xno ]; then read -p "${question} [${default}]? " answer fi if [ x${answer} = x ]; then answer=${default} fi echo ${answer} } yesno() { local question default answer question=$1 default=$2 while :; do answer=$(ask "${question}" "${default}") case "${answer}" in [Yy]*) return 0;; [Nn]*) return 1;; esac echo "Please answer yes or no." done } if [ x"$2" = xPRE-INSTALL ]; then USER=fido GROUP=fido UID=111 GID=111 if /usr/sbin/pw groupshow "${GROUP}" 2>/dev/null; then echo "You already have a group \"${GROUP}\", so I will use it." else if /usr/sbin/pw groupadd ${GROUP} -g ${GID} then echo "Added group \"${GROUP}\"." else echo "Adding group \"${GROUP}\" failed..." echo "Please create it, and try again." exit 1 fi fi if /usr/sbin/pw user show "${USER}" 2>/dev/null; then echo "You already have a user \"${USER}\", so I will use it." else if /usr/sbin/pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ -d ${PKG_PREFIX}/fido \ -c "Fido System" then echo "Added user \"${USER}\"." else echo "Adding user \"${USER}\" failed..." echo "Please create it, and try again." exit 1 fi fi fi ctron4/files/elliptic-6.5.3'>dependabot/npm_and_yarn/devel/electron4/files/elliptic-6.5.3
aboutsummaryrefslogtreecommitdiffstats |
Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update Qt to 5.6.2 [1,2] | tcberner | 2016-10-28 | 1 | -0/+1 |
* | Update the Qt5 ports to 5.6.1. | rakuco | 2016-09-17 | 1 | -0/+24 |