diff options
author | bofh <bofh@FreeBSD.org> | 2015-06-02 22:58:24 +0800 |
---|---|---|
committer | bofh <bofh@FreeBSD.org> | 2015-06-02 22:58:24 +0800 |
commit | 442bd50900987dc9bf16519b7a8cb4eb5d89cabf (patch) | |
tree | c43d8bdcc625cb1bcdf6f8b4e4b78a838d48897c /security/munge | |
parent | 47843ad2980ed33df6334d93794d04e5b63c0f85 (diff) | |
download | freebsd-ports-gnome-442bd50900987dc9bf16519b7a8cb4eb5d89cabf.tar.gz freebsd-ports-gnome-442bd50900987dc9bf16519b7a8cb4eb5d89cabf.tar.zst freebsd-ports-gnome-442bd50900987dc9bf16519b7a8cb4eb5d89cabf.zip |
security/munge: Add munged_flags in rc file
PR: 200401
Submitted by: jrm@ftfl.ca
Diffstat (limited to 'security/munge')
-rw-r--r-- | security/munge/files/munged.in | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/security/munge/files/munged.in b/security/munge/files/munged.in index f97dc836d738..4c908664fe7d 100644 --- a/security/munge/files/munged.in +++ b/security/munge/files/munged.in @@ -1,23 +1,20 @@ #!/bin/sh -# -# # PROVIDE: munged # REQUIRE: LOGIN # KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable mysql: -# munged_enable (bool): Set to "NO" by default. -# Set it to "YES" to enable munged. -# munged_keyfile (str): Default to "/usr/local/etc/munge/munge.key" -# Default munge key. -# munged_pidfile (str): Custum PID file path and name. -# Default to "/var/run/munged.pid". -# +# Add the following line to /etc/rc.conf to enable munged: +# munged_enable (bool): Set to "NO" by default. +# Set it to "YES" to enable munged. +# munged_keyfile (str): Set to "/usr/local/etc/munge/munge.key" by default. +# Custom munge key. +# munged_pidfile (str): Set to "/var/run/munged.pid" by default. +# Custum PID file path and name. +# munged_flags (str): Set to "" by default. +# Extra flags passed to start command. . /etc/rc.subr - name="munged" rcvar=munged_enable stop_cmd="munged_stop" |