From 00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 11 Sep 2020 20:50:58 -0400 Subject: Remove NetBSD from install script I never use it. --- home/.profile | 3 +-- install.sh | 12 ------------ 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/home/.profile b/home/.profile index 53942ba3..ed6d9c67 100644 --- a/home/.profile +++ b/home/.profile @@ -1,6 +1,6 @@ _PATH=$PATH PATH= path() { [ -d "$1" ] && PATH="${PATH}${PATH:+:}${1}"; } -for prefix in '' /usr/local /opt/local /usr/pkg /usr ~/.local; do +for prefix in '' /usr/local /opt/local /usr ~/.local; do path "${prefix}/sbin" path "${prefix}/bin" done @@ -15,7 +15,6 @@ export CLICOLOR=1 export GPG_TTY=$(tty) export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics' -type nvim >/dev/null 2>&1 || EDITOR=vim [ -e /usr/share/mk/sys.mk ] || export CFLAGS=-O [ -d /usr/home ] && cd diff --git a/install.sh b/install.sh index 46ebd926..33b1450e 100644 --- a/install.sh +++ b/install.sh @@ -5,7 +5,6 @@ pkgAny='curl htop sl the_silver_searcher tree' pkgDarwin="${pkgAny} git neovim pkg-config" pkgFreeBSD="${pkgAny} ddate neovim" pkgLinux="${pkgAny} bc ctags gdb neovim openssh" -pkgNetBSD="${pkgAny} vim" pkgOpenBSD="${pkgAny} neovim" Darwin() { @@ -31,17 +30,6 @@ Linux() { pacman -Sy --needed $pkgLinux } -NetBSD() { - if [ ! -f /usr/pkg/bin/pkgin ]; then - base="ftp://ftp.NetBSD.org/pub/pkgsrc/packages" - export PKG_PATH="${base}/$(uname -s)/$(uname -p)/$(uname -r)/All" - pkg_add pkgin - echo "$PKG_PATH" > /usr/pkg/etc/pkgin/repositories.conf - fi - pkgin update - pkgin install $pkgNetBSD -} - OpenBSD() { pkg_add $pkgOpenBSD } -- cgit 1.4.1 atsitd.in'>
path: root/FreeBSD/catsitd.in (unfollow)
Commit message (Collapse)Author
2020-08-15Log when service name pattern doesn't matchJune McEnroe
2020-08-15Add FreeBSD rc scriptJune McEnroe
I'm expecting to also have an OpenBSD rc script.
2020-08-15Call setproctitle with number of servicesJune McEnroe
2020-08-15Rename project to catsitJune McEnroe
2020-08-15Use only LOG_NOTICE and LOG_WARNINGJune McEnroe
These are the two priorities that go to a normal place (/var/log/messages) by default.
2020-08-15Make log messages consistentJune McEnroe
2020-08-15Remove closelog callJune McEnroe
It's unclear whether closelog is really safe to call in pre-exec context, so just trust that the log is opened with CLOEXEC.
2020-08-15Implement service statusJune McEnroe
2020-08-15Parse control commandsJune McEnroe
2020-08-15Read service pipesJune McEnroe
Changed line reading functions to return const char * because modifying the strings by adding '\0' into them screws up the following call.
2020-08-15Implement non-blocking line-buffered readingJune McEnroe
2020-08-15Generate tags fileJune McEnroe
2020-08-15Just use CLOCK_MONOTONIC and clean up includesJune McEnroe
CLOCK_MONOTONIC exists everywhere.
2020-08-15Reap childrenJune McEnroe
2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe
2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe
2020-08-14Switch to timespec for timeoutsJune McEnroe
Can be passed to ppoll(2) directly.
2020-08-14Implement serviceStartJune McEnroe
2020-08-14Flesh out Service structJune McEnroe
2020-08-14Build environment for servicesJune McEnroe
2020-08-14Implement spawntab parsingJune McEnroe
2020-08-14Open syslog, daemonize, write PIDJune McEnroe
2020-08-14Implement user and group lookupJune McEnroe
2020-08-14Add install targetJune McEnroe
2020-08-14Add spawnd skeletonJune McEnroe