aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/cobbler/snippets/func_register_if_enabled
blob: 4258fa339e46318651083a8d95029cfb16960a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#if $str($getVar('func_auto_setup','')) == "1"
# Start func registration section

/sbin/chkconfig --level 345 funcd on

cat <<EOFM > /etc/func/minion.conf
[main]
log_level = INFO
acl_dir = /etc/func/minion-acl.d

listen_addr =
listen_port = 51234
EOFM

cat <<EOCM > /etc/certmaster/minion.conf
[main]
certmaster = $func_master
certmaster_port = 51235
log_level = DEBUG
cert_dir = /etc/pki/certmaster
EOCM

# End func registration section
#end if