summaryrefslogtreecommitdiff
path: root/sysutils/clockspeed-conf/files
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/clockspeed-conf/files')
-rw-r--r--sysutils/clockspeed-conf/files/create_ids.sh40
-rw-r--r--sysutils/clockspeed-conf/files/patch-clockspeed-conf10
2 files changed, 0 insertions, 50 deletions
diff --git a/sysutils/clockspeed-conf/files/create_ids.sh b/sysutils/clockspeed-conf/files/create_ids.sh
deleted file mode 100644
index b6c77585cecc..000000000000
--- a/sysutils/clockspeed-conf/files/create_ids.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-PATH=/bin:/usr/sbin:/usr/bin:/bin
-
-make_user() {
- USER=$1
- UID=$2
- COMMENT="$3"
- USER_HOME=/nonexistent
- GROUP=${USER}
- if pw user show "${USER}" 2>/dev/null; then
- echo "You already have a user \"${USER}\", so I will use it."
- else
- while pw user show ${UID}; do
- UID=`expr ${UID} + 1`
- done
- GID=${UID}
-
- if pw groupadd ${GROUP} -g ${GID}; then
- echo "Added group \"${GROUP}\"."
- else
- echo "Adding group \"${GROUP}\" failed..."
- exit 1
- fi
-
- if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
- -d ${USER_HOME} -s /sbin/nologin -c "${COMMENT}"
- then
- echo "Added user \"${USER}\"."
- else
- echo "Adding user \"${USER}\" failed..."
- exit 1
- fi
- fi
-}
-
-make_user clockspeed 801 "clockspeed adjust service"
-make_user taiclock 802 "taiclockd daemon"
-make_user log 803 "djb service log"
diff --git a/sysutils/clockspeed-conf/files/patch-clockspeed-conf b/sysutils/clockspeed-conf/files/patch-clockspeed-conf
deleted file mode 100644
index 4d5bc6c1b868..000000000000
--- a/sysutils/clockspeed-conf/files/patch-clockspeed-conf
+++ /dev/null
@@ -1,10 +0,0 @@
---- clockspeed-conf.orig Mon Apr 14 14:55:45 2003
-+++ clockspeed-conf Mon Apr 14 14:55:54 2003
-@@ -12,7 +12,7 @@
- # and optionally ATTOFILE if not ETCDIR/atto
- #
- #
--[ -z "${CLOCKSPEED_INSTALLATION}" ] && CLOCKSPEED_INSTALLATION="DJB"
-+[ -z "${CLOCKSPEED_INSTALLATION}" ] && CLOCKSPEED_INSTALLATION="FreeBSD_PORT"
-
- PATH=/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/command:${PATH}