1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

Add some comments to the top describing the available rc.conf flags.

Also, fix a typo.
This commit is contained in:
Adam Weinberger 2016-06-09 16:00:11 +00:00
parent 4a5694585f
commit 1266691628
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=416615

View File

@ -7,6 +7,15 @@
# REQUIRE: %%REQUIRE%%
# KEYWORD: shutdown
# dovecot_enable (bool): Set it to YES to enable dovecot
# Default: NO
# dovecot_config (str): Path to dovecot.conf
# Default: %%ETCDIR%%/dovecot.conf
# Set it to a space-separated list to start
# multiple dovecot instances
# dovecot_flags (str): Extra flags to pass to dovecot
# Default: empty
# Define dovecot_* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
@ -48,7 +57,7 @@ restart_cmd()
}
# To start multiple instances of dovecot set dovecot_config to
# a space seperated list of configuration files.
# a space separated list of configuration files.
for config in ${dovecot_config}; do
required_files="${config}"
command_args="-c ${config}"