summaryrefslogtreecommitdiff
path: root/security/bitwarden-ruby/files
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-01-01 13:52:46 +0000
committerRene Ladan <rene@FreeBSD.org>2019-01-01 13:52:46 +0000
commitba09f7ee95cee49a75d1ecb50f4be68f99de394a (patch)
treef7075798a9a1abe4f41bfb7a9ae6bd8387a1e92a /security/bitwarden-ruby/files
parentsysutils/policykit-qt, sysutils/qzeitgeist: remove dead variable USE_KDE (diff)
Remove expired ports:
2018-12-30 textproc/pecl-xdiff: Works only with EOL php 5.6 2019-01-01 www/mod_http2-devel: Use the module that is shipped with Apache 2.4 2019-01-01 www/varnish5: Varnish 5 is Retired 2018-12-30 security/pecl-ssh2-0: Works only with EOL php 5.6 2019-01-01 security/bitwarden-ruby: Expects very specific rubygem versions for new updates. Please follow instructions in git repo. 2018-12-30 devel/pecl-intl: Works only with EOL php 5.6 2018-12-30 devel/pecl-APCu4: Works only with EOL php 5.6 2018-12-30 databases/pecl-memcache: Works only with EOL php 5.6 2018-12-30 databases/pecl-memcached2: Works only with EOL php 5.6 2018-12-30 math/pecl-bitset2: Works only with EOL php 5.6 2019-01-01 multimedia/zoneminder-h264: h264 feature was commited to main branch, please upgrade to www/zoneminder 2019-01-01 lang/php56: Security Support ends on 31 Dec 2018
Notes
Notes: svn path=/head/; revision=488894
Diffstat (limited to 'security/bitwarden-ruby/files')
-rw-r--r--security/bitwarden-ruby/files/bitwarden-api.in48
1 files changed, 0 insertions, 48 deletions
diff --git a/security/bitwarden-ruby/files/bitwarden-api.in b/security/bitwarden-ruby/files/bitwarden-api.in
deleted file mode 100644
index 00fe822b1e75..000000000000
--- a/security/bitwarden-ruby/files/bitwarden-api.in
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-#
-# Created by: Mark Felder <feld@FreeBSD.org>
-# $FreeBSD$
-#
-
-# PROVIDE: bitwarden-api
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-
-#
-# Add the following line to /etc/rc.conf to enable `bitwarden-api':
-#
-# bitwarden_api_enable="YES"
-
-. /etc/rc.subr
-name=bitwarden_api
-
-rcvar=bitwarden_api_enable
-load_rc_config ${name}
-
-: ${bitwarden_api_enable:=NO}
-: ${bitwarden_api_port:=4567}
-: ${bitwarden_api_signups:=NO}
-: ${bitwarden_api_user:=www}
-: ${bitwarden_api_group:=www}
-: ${bitwarden_api_chdir=/usr/local/www/bitwarden-ruby}
-
-pidfile="/var/run/bitwarden/${name}.pid"
-procname=%%RUBY_WITH_SUFFIX%%
-command="%%PREFIX%%/bin/rackup"
-command_args="-P ${pidfile} -p ${bitwarden_api_port} -E production config.ru 2>&1 | logger -t bitwarden &"
-start_precmd="start_precmd"
-
-start_precmd()
-{
- if [ ! -e /var/run/bitwarden ] ; then
- install -d -o ${bitwarden_api_user} -g ${bitwarden_api_group} /var/run/bitwarden;
- fi
-
- checkyesno bitwarden_api_signups
- if [ "$?" -eq 0 ]; then
- export ALLOW_SIGNUPS=1
- echo "Bitwarden Signups Enabled"
- fi
-}
-
-run_rc_command "$1"