mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
40 lines
1 KiB
Bash
40 lines
1 KiB
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: mongod
|
|
# REQUIRE: NETWORK ldconfig
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# mongod_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable mongod.
|
|
#
|
|
# Additional configurable variables:
|
|
# mongod_config (path): Set to %%PREFIX%%/etc/mongodb.conf
|
|
# by default. Additional configuration. You
|
|
# can also use mongod_flags for additional
|
|
# command line arguments.
|
|
# mongod_dbpath (path): Set to /var/db/mongodb by default
|
|
# mongod_user (username): Set to "mongodb" by default
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mongod"
|
|
rcvar=mongod_enable
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
|
|
load_rc_config $name
|
|
|
|
: ${mongod_enable="NO"}
|
|
: ${mongod_config="%%PREFIX%%/etc/mongodb.conf"}
|
|
: ${mongod_dbpath="/var/db/mongodb"}
|
|
: ${mongod_user="mongodb"}
|
|
|
|
command_args="-f $mongod_config --dbpath $mongod_dbpath --logappend --logpath $mongod_dbpath/mongod.log --fork"
|
|
|
|
required_dirs=${mongod_dbpath}
|
|
|
|
run_rc_command "$1"
|
|
|