FreeBSD Bugzilla – Attachment 132510 Details for
Bug 176805
rc scripts provided with security/heimdal haven't a common FreeBSD implementation
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
file.shar
file.shar (text/plain), 2.94 KB, created by
Yoann Gini
on 2013-03-10 08:20:00 UTC
(
hide
)
Description:
file.shar
Filename:
MIME Type:
Creator:
Yoann Gini
Created:
2013-03-10 08:20:00 UTC
Size:
2.94 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># heimdal_ipropd ># heimdal_kdc ># heimdal_kpasswdd ># >echo x - heimdal_ipropd >sed 's/^X//' >heimdal_ipropd << '9ea9306d1448844f21cbc6a066ac3d4d' >X#!/bin/sh >X >X# PROVIDE: heimdal_ipropd >X# REQUIRE: NETWORKING heimdal_kdc heimdal_kpasswdd >X >X. /etc/rc.subr >X >Xname="heimdal_ipropd" >Xrcvar="heimdal_ipropd_enable" >X >Xload_rc_config $name >X >XPREFIX="/usr/local" >X >Xcommand="${PREFIX}/libexec/ipropd" >X >Xstart_cmd="heimdal_ipropd_start" >Xstop_cmd="heimdal_ipropd_stop" >X >X >X >Xheimdal_ipropd_start() >X{ >X case "${heimdal_kdc_role}" in >X master) run_ipropd=1;; >X >X slave) run_ipropd=2;; >X >X *) echo "heimdal_kdc_role is not set." >&2 >X exit 64 >X ;; >X esac >X >X echo -n "Staring Heimdal ipropd server" >X >X test "${run_ipropd}" -eq "1" && ${command}-master ${heimdal_ipropd_flags} & >X test "${run_ipropd}" -eq "2" && ${command}-slave ${heimdal_ipropd_flags} & >X} >X >Xheimdal_ipropd_stop() >X{ >X test -f "/var/run/ipropd.pid" && kill `cat /var/run/ipropd.pid` >X} >X >Xrun_rc_command "$1" >9ea9306d1448844f21cbc6a066ac3d4d >echo x - heimdal_kdc >sed 's/^X//' >heimdal_kdc << 'dfe84c54b153460ba32771c85b815108' >X#!/bin/sh >X >X# PROVIDE: heimdal_kdc >X# REQUIRE: NETWORKING >X >X. /etc/rc.subr >X >Xname="heimdal_kdc" >Xrcvar="heimdal_kdc_enable" >X >Xload_rc_config $name >X >XPREFIX="/usr/local" >X >Xcommand="${PREFIX}/libexec/kdc" >X >Xstart_cmd="heimdal_kdc_start" >Xstop_cmd="heimdal_kdc_stop" >X >X >X >Xheimdal_kdc_start() >X{ >X case "${heimdal_kdc_role}" in >X master) run_kdc=1;; >X >X slave) run_kdc=1;; >X >X *) echo "heimdal_kdc_role is not set." >&2 >X exit 64 >X ;; >X esac >X >X echo -n "Staring Heimdal KDC server" >X >X test "${run_kdc}" -eq "1" && ${command} ${heimdal_kdc_flags} & >X} >X >Xheimdal_kdc_stop() >X{ >X test -f "/var/run/kdc.pid" && kill `cat /var/run/kdc.pid` >X} >X >Xrun_rc_command "$1" >dfe84c54b153460ba32771c85b815108 >echo x - heimdal_kpasswdd >sed 's/^X//' >heimdal_kpasswdd << '27674d41edff5d20245f38701bdc2bed' >X#!/bin/sh >X >X# PROVIDE: heimdal_kpasswdd >X# REQUIRE: NETWORKING heimdal_kdc >X >X. /etc/rc.subr >X >Xname="heimdal_kpasswdd" >Xrcvar="heimdal_kpasswdd_enable" >X >Xload_rc_config $name >X >XPREFIX="/usr/local" >X >Xcommand="${PREFIX}/libexec/kpasswdd" >X >Xstart_cmd="heimdal_kpasswdd_start" >Xstop_cmd="heimdal_kpasswdd_stop" >X >X >X >Xheimdal_kpasswdd_start() >X{ >X case "${heimdal_kdc_role}" in >X master) run_kpasswdd=1;; >X >X slave) run_kpasswdd=1;; >X >X *) echo "heimdal_kdc_role is not set." >&2 >X exit 64 >X ;; >X esac >X >X echo -n "Staring Heimdal kpasswdd server" >X >X test "${run_kpasswdd}" -eq "1" && ${command} ${heimdal_kpasswdd_flags} & >X} >X >Xheimdal_kpasswdd_stop() >X{ >X test -f "/var/run/kpasswdd.pid" && kill `cat /var/run/kpasswdd.pid` >X} >X >Xrun_rc_command "$1" >27674d41edff5d20245f38701bdc2bed >exit
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 176805
: 132510