ports/167083: [new port] sysutils/cfengine33: Automated network administration framework

Glen Barber gjb at FreeBSD.org
Thu Apr 19 01:48:13 UTC 2012


Shar seems to have been stripped.

Should be attached here.

Glen

-------------- next part --------------
# 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:
#
#	cfengine33
#	cfengine33/distinfo
#	cfengine33/Makefile
#	cfengine33/pkg-descr
#	cfengine33/files
#	cfengine33/files/cf-execd.in
#	cfengine33/files/patch-masterfiles-Makefile.in
#	cfengine33/files/patch-Makefile.in
#	cfengine33/files/patch-docs-guides-Makefile.in
#	cfengine33/files/cf-serverd.in
#	cfengine33/files/patch-examples-example_config-Makefile.in
#	cfengine33/files/patch-examples-Makefile.in
#	cfengine33/files/patch-docs-manpages-Makefile.in
#	cfengine33/pkg-plist
#
echo c - cfengine33
mkdir -p cfengine33 > /dev/null 2>&1
echo x - cfengine33/distinfo
sed 's/^X//' >cfengine33/distinfo << '9bfd20871087f7bf2535292b72859a5f'
XSHA256 (cfengine-3.3.0.tar.gz) = 170a65cce35b9b333594543b9b3480e5d9c19c28e275431e6e58a3be9372c0a7
XSIZE (cfengine-3.3.0.tar.gz) = 1236769
9bfd20871087f7bf2535292b72859a5f
echo x - cfengine33/Makefile
sed 's/^X//' >cfengine33/Makefile << '8d444783a53ef5ba44e0f572018b25f0'
X# New ports collection makefile for:	cfengine v3.3.0
X# Date created:
X# Whom:
X#
X# $FreeBSD$
X#
X
XPORTNAME=	cfengine
XPORTVERSION=	3.3.0
XCATEGORIES=	sysutils
XMASTER_SITES=	http://cfengine.com/source-code/download?file=
X
XMAINTAINER=	gjb at FreeBSD.org
XCOMMENT=	A systems administration tool for networks
X
XCONFLICTS=	cfengine-2.* \
X		cfengine-3.2.*
X
XLATEST_LINK=	cfengine33
XFETCH_BEFORE_ARGS=	-o ${DISTDIR}/${DISTFILES}
X
XUSE_RC_SUBR=	cf-execd cf-serverd
X
XLIB_DEPENDS=	pcre:${PORTSDIR}/devel/pcre \
X		tokyocabinet:${PORTSDIR}/databases/tokyocabinet
XUSE_BDB=	yes
XUSE_OPENSSL=	yes
XUSE_GMAKE=	yes
XUSE_LDCONFIG=	yes
XGNU_CONFIGURE=	yes
XDOCSDIR=	${PREFIX}/share/doc/cfengine33
XCONFIGURE_ARGS=	--docdir=${DOCSDIR} \
X		--pdfdir=${DOCSDIR}/pdf \
X		--htmldir=${DOCSDIR}/html \
X		--with-tokyocabinet=${LOCALBASE} \
X		--with-pcre=${LOCALBASE}
X
XMAN8=		cf-agent.8 \
X		cf-execd.8 \
X		cf-key.8 \
X		cf-know.8 \
X		cf-monitord.8 \
X		cf-promises.8 \
X		cf-report.8 \
X		cf-runagent.8 \
X		cf-serverd.8
X
XOPTIONS=	PGSQL "With PostgreSQL connectors" off \
X		MYSQL "With MySQL connectors" off \
X		LIBVRT "With libvirt" off
X
X.include <bsd.port.options.mk>
X
X.if defined(WITH_PGSQL)
XUSE_PGSQL=		yes
XLIB_DEPENDS+=		pq:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
XCONFIGURE_ARGS+=	--with-postgresql=${LOCALBASE}
X.endif
X
X.if defined(WITH_MYSQL)
XUSE_MYSQL=		yes
XLIB_DEPENDS+=		mysqlclient:${PORTSDIR}/${_MYSQL_CLIENT}
XCONFIGURE_ARGS+=	--with-mysql=yes
XLDFLAGS+=		-L${LOCALBASE}/lib/mysql
X.endif
X
X.if defined(WITH_LIBVRT)
XLIB_DEPENDS+=		virt:${PORTSDIR}/devel/libvirt
XCONFIGURE_ARGS+=	--with-libvirt=${LOCALBASE}
X.endif
X
X.include <bsd.port.mk>
8d444783a53ef5ba44e0f572018b25f0
echo x - cfengine33/pkg-descr
sed 's/^X//' >cfengine33/pkg-descr << '95e568dcda07040869060f7a32943150'
XCfengine is an automated suite of programs for configuring and 
Xmaintaining Unix-like computers. It has been used on computing arrays 
Xof between 1 and 20,000 computers since 1993 by a wide range of 
Xorganizations. Cfengine is supported by active research and was the 
Xfirst autonomic, hands-free management system for Unix-like operating
Xsystems. Cfengine is an autonomic maintenance system not merely a
Xchange management roll-out tool. Cfengine has a history of security
Xand adaptability. 
X
XWWW: http://www.cfengine.org/
95e568dcda07040869060f7a32943150
echo c - cfengine33/files
mkdir -p cfengine33/files > /dev/null 2>&1
echo x - cfengine33/files/cf-execd.in
sed 's/^X//' >cfengine33/files/cf-execd.in << 'fb9bbdbc6285fdcb854627340aa7e367'
X#!/bin/sh
X#
X# $FreeBSD$
X#
X# PROVIDE: cf-execd
X# REQUIRE: LOGIN
X# KEYWORD: shutdown
X#
X# Add the following line to /etc/rc.conf[.local] to enable cf-execd(8)
X#
X# cf_execd_enable (bool):        Set to "NO" by default.
X#                               Set it to "YES" to enable cf-execd.
X# cf_execd_flags (str):          Custom additional arguments to be passed
X#                               to cf-execd (default empty).
X#
X
X. /etc/rc.subr
X
Xname="cf_execd"
Xrcvar=cf_execd_enable
X
Xcommand="%%PREFIX%%/bin/cf-execd"
X
Xload_rc_config $name
X
X: ${cf_execd_enable="NO"}
X
Xrun_rc_command "$1"
fb9bbdbc6285fdcb854627340aa7e367
echo x - cfengine33/files/patch-masterfiles-Makefile.in
sed 's/^X//' >cfengine33/files/patch-masterfiles-Makefile.in << '2fd74018ca3f7194b150436e59cf1603'
X--- masterfiles/Makefile.in.orig	2012-04-18 09:27:22.123735383 -0400
X+++ masterfiles/Makefile.in	2012-04-18 09:27:28.995735227 -0400
X@@ -267,7 +267,7 @@
X top_builddir = @top_builddir@
X top_srcdir = @top_srcdir@
X workdir = @workdir@
X-masterfilesdir = $(projdatadir)/CoreBase
X+masterfilesdir = $(projdatadir)/cfengine33
X dist_masterfiles_DATA = $(srcdir)/failsafe.cf $(srcdir)/cfengine_stdlib.cf $(srcdir)/promises.cf
X 
X #
2fd74018ca3f7194b150436e59cf1603
echo x - cfengine33/files/patch-Makefile.in
sed 's/^X//' >cfengine33/files/patch-Makefile.in << 'e2a50bbc090bd1a4a81dcbb6c8b8a1c6'
X--- Makefile.in.orig	2012-04-10 08:20:50.000000000 +0000
X+++ Makefile.in	2012-04-18 12:45:09.170734463 +0000
X@@ -333,7 +333,7 @@
X SUBDIRS = pub $(NOVA_SUBDIR) $(CONSTELLATION_SUBDIR) src docs examples masterfiles tests $(CFMOD_SUBDIR)
X DIST_SUBDIRS = pub src docs examples masterfiles tests
X EXTRA_DIST = ChangeLog INSTALL README LICENSE
X-docsdir = $(projdocdir)
X+docsdir = $(projdocdir)/cfengine33
X docs_DATA = README ChangeLog
X 
X #
e2a50bbc090bd1a4a81dcbb6c8b8a1c6
echo x - cfengine33/files/patch-docs-guides-Makefile.in
sed 's/^X//' >cfengine33/files/patch-docs-guides-Makefile.in << 'b9a545a77951263d5b2e4a21abe78288'
X--- docs/guides/Makefile.in.orig	2012-04-18 09:28:06.178735740 -0400
X+++ docs/guides/Makefile.in	2012-04-18 09:28:39.004733764 -0400
X@@ -491,7 +491,7 @@
X 	$(MAKE) -C ../tools $(AM_MAKEFLAGS) build-solutions-guide
X 
X cf3-solutions.texinfo: cf3-solutions.texinfo.in ../tools/build-solutions-guide
X-	$(AM_V_GEN)../tools/build-solutions-guide $(top_srcdir)/examples < $< > $@ || (rm -f $@; false)
X+	$(AM_V_GEN)../tools/build-solutions-guide $(top_srcdir)/examples/cfengine33 < $< > $@ || (rm -f $@; false)
X 
X %.html: %.texinfo
X 	$(AM_V_GEN)$(MAKEINFO) \
b9a545a77951263d5b2e4a21abe78288
echo x - cfengine33/files/cf-serverd.in
sed 's/^X//' >cfengine33/files/cf-serverd.in << '7f76f3f40dfa49acc550d5464bbc9723'
X#!/bin/sh
X#
X# $FreeBSD$
X#
X# PROVIDE: cf-serverd
X# REQUIRE: LOGIN
X# KEYWORD: shutdown
X#
X# Add the following line to /etc/rc.conf[.local] to enable cf-serverd(8)
X#
X# cf_serverd_enable (bool):        Set to "NO" by default.
X#                               Set it to "YES" to enable cf-serverd.
X# cf_serverd_flags (str):          Custom additional arguments to be passed
X#                               to cf-serverd (default empty).
X#
X
X. /etc/rc.subr
X
Xname="cf_serverd"
Xrcvar=cf_serverd_enable
X
Xcommand="%%PREFIX%%/bin/cf-serverd"
X
Xload_rc_config $name
X
X: ${cf_serverd_enable="NO"}
X
Xrun_rc_command "$1"
7f76f3f40dfa49acc550d5464bbc9723
echo x - cfengine33/files/patch-examples-example_config-Makefile.in
sed 's/^X//' >cfengine33/files/patch-examples-example_config-Makefile.in << 'e9b5141e150c028422acf666c4969dac'
X--- examples/example_config/Makefile.in.orig	2012-04-18 13:04:06.594736823 +0000
X+++ examples/example_config/Makefile.in	2012-04-18 13:04:22.908735546 +0000
X@@ -267,7 +267,7 @@
X top_builddir = @top_builddir@
X top_srcdir = @top_srcdir@
X workdir = @workdir@
X-exampleconfigdir = $(projdocdir)/example_config
X+exampleconfigdir = $(projdocdir)/cfengine33/example_config
X dist_exampleconfig_DATA = $(srcdir)/failsafe.cf $(top_srcdir)/masterfiles/cfengine_stdlib.cf $(srcdir)/promises.cf $(srcdir)/site.cf $(srcdir)/update.cf
X 
X #
e9b5141e150c028422acf666c4969dac
echo x - cfengine33/files/patch-examples-Makefile.in
sed 's/^X//' >cfengine33/files/patch-examples-Makefile.in << '2ffcd5d7b523cc1e873b6bf0c343d200'
X--- examples/Makefile.in.orig	2012-04-18 09:29:17.058737575 -0400
X+++ examples/Makefile.in	2012-04-18 09:29:48.682736657 -0400
X@@ -308,7 +308,7 @@
X workdir = @workdir@
X SUBDIRS = example_config
X DIST_SUBDIRS = example_config
X-examplesdir = $(projdocdir)/examples
X+examplesdir = $(projdocdir)/cfengine33/examples
X dist_examples_DATA = $(srcdir)/*.cf
X MAINTAINERCLEANFILES = Makefile.in mdate-sh
X all: all-recursive
2ffcd5d7b523cc1e873b6bf0c343d200
echo x - cfengine33/files/patch-docs-manpages-Makefile.in
sed 's/^X//' >cfengine33/files/patch-docs-manpages-Makefile.in << 'db742302ccc57dda4fb221d8c0e8404d'
X--- ./docs/manpages/Makefile.in.orig	2012-04-18 16:08:49.694922812 +0000
X+++ ./docs/manpages/Makefile.in	2012-04-18 16:10:12.472278078 +0000
X@@ -245,7 +245,7 @@
X libexecdir = @libexecdir@
X localedir = @localedir@
X localstatedir = @localstatedir@
X-mandir = @mandir@
X+mandir = @prefix@/man
X mkdir_p = @mkdir_p@
X oldincludedir = @oldincludedir@
X pdfdir = @pdfdir@
db742302ccc57dda4fb221d8c0e8404d
echo x - cfengine33/pkg-plist
sed 's/^X//' >cfengine33/pkg-plist << '8c3b18a2bdfadcd8ac388c8833c64f33'
Xlib/libpromises.so.1
Xlib/libpromises.la
Xlib/libpromises.so
Xbin/cf-key
Xbin/cf-monitord
Xbin/cf-report
Xbin/cf-promises
Xbin/cf-execd
Xbin/cf-runagent
Xbin/cf-serverd
Xbin/cf-agent
Xbin/cf-know
Xshare/cfengine33/promises.cf
Xshare/cfengine33/failsafe.cf
Xshare/cfengine33/cfengine_stdlib.cf
X%%DOCSDIR%%/README
X%%DOCSDIR%%/ChangeLog
X%%DOCSDIR%%/example_config/cfengine_stdlib.cf
X%%DOCSDIR%%/example_config/failsafe.cf
X%%DOCSDIR%%/example_config/update.cf
X%%DOCSDIR%%/example_config/site.cf
X%%DOCSDIR%%/example_config/promises.cf
X%%DOCSDIR%%/examples/unit_getindices_and_values.cf
X%%DOCSDIR%%/examples/unit_acl_generic.cf
X%%DOCSDIR%%/examples/unit_irange.cf
X%%DOCSDIR%%/examples/unit_switchcase.cf
X%%DOCSDIR%%/examples/unit_occurrences.cf
X%%DOCSDIR%%/examples/unit_promises.cf
X%%DOCSDIR%%/examples/unit_getenv.cf
X%%DOCSDIR%%/examples/unit_server_copy_remote.cf
X%%DOCSDIR%%/examples/unit_package_apt.cf
X%%DOCSDIR%%/examples/unit_filesize.cf
X%%DOCSDIR%%/examples/unit_software_dist.cf
X%%DOCSDIR%%/examples/unit_lsdir.cf
X%%DOCSDIR%%/examples/unit_copy.cf
X%%DOCSDIR%%/examples/unit_select_region.cf
X%%DOCSDIR%%/examples/unit_join.cf
X%%DOCSDIR%%/examples/unit_setuidlog.cf
X%%DOCSDIR%%/examples/unit_getregistry.cf
X%%DOCSDIR%%/examples/unit_getmacaddress.cf
X%%DOCSDIR%%/examples/unit_stringarray.cf
X%%DOCSDIR%%/examples/unit_report_custom.cf
X%%DOCSDIR%%/examples/unit_knowledge_txt.cf
X%%DOCSDIR%%/examples/win_schedule.cf
X%%DOCSDIR%%/examples/unit_failedcommand.cf
X%%DOCSDIR%%/examples/unit_hashmatch.cf
X%%DOCSDIR%%/examples/unit_measurements.cf
X%%DOCSDIR%%/examples/unit_knowledge_driver.cf
X%%DOCSDIR%%/examples/unit_edit_comment_lines.cf
X%%DOCSDIR%%/examples/unit_activedirectory_showuser.cf
X%%DOCSDIR%%/examples/unit_acl.cf
X%%DOCSDIR%%/examples/unit_registry_cache.cf
X%%DOCSDIR%%/examples/unit_storage.cf
X%%DOCSDIR%%/examples/unit_execd.cf
X%%DOCSDIR%%/examples/unit_intarray.cf
X%%DOCSDIR%%/examples/unit_service_start.cf
X%%DOCSDIR%%/examples/unit_remoteclasses.cf
X%%DOCSDIR%%/examples/unit_getuid.cf
X%%DOCSDIR%%/examples/unit_maplist.cf
X%%DOCSDIR%%/examples/unit_hashuncomment.cf
X%%DOCSDIR%%/examples/unit_edit_sectioned_file.cf
X%%DOCSDIR%%/examples/unit_controlclasses.cf
X%%DOCSDIR%%/examples/unit_execresult.cf
X%%DOCSDIR%%/examples/guest_environment_kvm.cf
X%%DOCSDIR%%/examples/unit_failsafe.cf
X%%DOCSDIR%%/examples/unit_badtype.cf
X%%DOCSDIR%%/examples/unit_root_passwd.cf
X%%DOCSDIR%%/examples/unit_hostrange.cf
X%%DOCSDIR%%/examples/unit_edit_insert_fuzzylines.cf
X%%DOCSDIR%%/examples/unit_getusers.cf
X%%DOCSDIR%%/examples/win_dns_client.cf
X%%DOCSDIR%%/examples/unit_parsestringarray.cf
X%%DOCSDIR%%/examples/unit_filenames.cf
X%%DOCSDIR%%/examples/unit_badpromise.cf
X%%DOCSDIR%%/examples/unit_deletelines.cf
X%%DOCSDIR%%/examples/unit_iprange.cf
X%%DOCSDIR%%/examples/unit_hub.cf
X%%DOCSDIR%%/examples/unit_changedbefore.cf
X%%DOCSDIR%%/examples/unit_module_exec_2.cf
X%%DOCSDIR%%/examples/unit_file_owner_list_template.cf
X%%DOCSDIR%%/examples/unit_copydir_copbl.cf
X%%DOCSDIR%%/examples/unit_package_zypper.cf
X%%DOCSDIR%%/examples/unit_template2.cf
X%%DOCSDIR%%/examples/unit_warnifline.cf
X%%DOCSDIR%%/examples/unit_activedirectory_listusers.cf
X%%DOCSDIR%%/examples/unit_exec_in_sequence.cf
X%%DOCSDIR%%/examples/unit_env.cf
X%%DOCSDIR%%/examples/unit_copy_edit.cf
X%%DOCSDIR%%/examples/unit_package_rpm.cf
X%%DOCSDIR%%/examples/unit_peers.cf
X%%DOCSDIR%%/examples/app_baseline.cf
X%%DOCSDIR%%/examples/unit_process_matching.cf
X%%DOCSDIR%%/examples/unit_change_detect.cf
X%%DOCSDIR%%/examples/unit_countlinesmatching.cf
X%%DOCSDIR%%/examples/unit_locate_files_and_compress.cf
X%%DOCSDIR%%/examples/unit_monitord.cf
X%%DOCSDIR%%/examples/unit_splitstring.cf
X%%DOCSDIR%%/examples/unit_update.cf
X%%DOCSDIR%%/examples/unit_file_change_detection.cf
X%%DOCSDIR%%/examples/unit_returnszero.cf
X%%DOCSDIR%%/examples/unit_readlist.cf
X%%DOCSDIR%%/examples/unit_classes_global.cf
X%%DOCSDIR%%/examples/unit_resolveconf.cf
X%%DOCSDIR%%/examples/unit_varexpansion.cf
X%%DOCSDIR%%/examples/unit_isvariable.cf
X%%DOCSDIR%%/examples/unit_select_size.cf
X%%DOCSDIR%%/examples/unit_edit_passwd_file_basic.cf
X%%DOCSDIR%%/examples/unit_chdir.cf
X%%DOCSDIR%%/examples/unit_filesexist2.cf
X%%DOCSDIR%%/examples/unit_readtcp.cf
X%%DOCSDIR%%/examples/unit_pattern_and_edit.cf
X%%DOCSDIR%%/examples/unit_server_copy_purge.cf
X%%DOCSDIR%%/examples/unit_diskfree.cf
X%%DOCSDIR%%/examples/unit_epimenides.cf
X%%DOCSDIR%%/examples/unit_neighbourhood_watch.cf
X%%DOCSDIR%%/examples/unit_measure_log.cf
X%%DOCSDIR%%/examples/unit_abort.cf
X%%DOCSDIR%%/examples/unit_package_msi_file.cf
X%%DOCSDIR%%/examples/unit_isnewerthan.cf
X%%DOCSDIR%%/examples/unit_reglist.cf
X%%DOCSDIR%%/examples/unit_insert_users.cf
X%%DOCSDIR%%/examples/unit_grep.cf
X%%DOCSDIR%%/examples/unit_literal_server.cf
X%%DOCSDIR%%/examples/hostswithclass.cf
X%%DOCSDIR%%/examples/unit_orchestration_hostlist.cf
X%%DOCSDIR%%/examples/unit_getfields.cf
X%%DOCSDIR%%/examples/unit_method_var2.cf
X%%DOCSDIR%%/examples/unit_getindices.cf
X%%DOCSDIR%%/examples/unit_dollar.cf
X%%DOCSDIR%%/examples/unit_lastnode.cf
X%%DOCSDIR%%/examples/unit_commands.cf
X%%DOCSDIR%%/examples/unit_fix_names.cf
X%%DOCSDIR%%/examples/unit_regline.cf
X%%DOCSDIR%%/examples/unit_disable_and_rotate_files.cf
X%%DOCSDIR%%/examples/unit_accessed_before.cf
X%%DOCSDIR%%/examples/unit_fileperms.cf
X%%DOCSDIR%%/examples/unit_package_yum.cf
X%%DOCSDIR%%/examples/unit_exec_args.cf
X%%DOCSDIR%%/examples/unit_method_validate.cf
X%%DOCSDIR%%/examples/unit_multipassvars.cf
X%%DOCSDIR%%/examples/unit_package_msi_version.cf
X%%DOCSDIR%%/examples/win_registry.cf
X%%DOCSDIR%%/examples/unit_classvar_convergence.cf
X%%DOCSDIR%%/examples/unit_reporttofile.cf
X%%DOCSDIR%%/examples/unit_acl_secret.cf
X%%DOCSDIR%%/examples/unit_server_flatcopy_localhost.cf
X%%DOCSDIR%%/examples/unit_regex_win.cf
X%%DOCSDIR%%/examples/unit_process_restart_basic.cf
X%%DOCSDIR%%/examples/unit_expand.cf
X%%DOCSDIR%%/examples/unit_repairedcommand.cf
X%%DOCSDIR%%/examples/unit_backreferences_files.cf
X%%DOCSDIR%%/examples/unit_global_list_expansion.cf
X%%DOCSDIR%%/examples/unit_regextract.cf
X%%DOCSDIR%%/examples/unit_ordering.cf
X%%DOCSDIR%%/examples/unit_webserver.cf
X%%DOCSDIR%%/examples/unit_bsdflags.cf
X%%DOCSDIR%%/examples/unit_menu.cf
X%%DOCSDIR%%/examples/unit_package_solaris.cf
X%%DOCSDIR%%/examples/unit_regarray.cf
X%%DOCSDIR%%/examples/unit_classmatch.cf
X%%DOCSDIR%%/examples/unit_isdir.cf
X%%DOCSDIR%%/examples/unit_definitions.cf
X%%DOCSDIR%%/examples/unit_remove_deadlinks.cf
X%%DOCSDIR%%/examples/unit_countclassesmatching.cf
X%%DOCSDIR%%/examples/unit_process_kill.cf
X%%DOCSDIR%%/examples/unit_reporting.cf
X%%DOCSDIR%%/examples/unit_edit_deletenotmatch.cf
X%%DOCSDIR%%/examples/unit_translatepath.cf
X%%DOCSDIR%%/examples/unit_disable.cf
X%%DOCSDIR%%/examples/unit_rename.cf
X%%DOCSDIR%%/examples/unit_edit_passwd_file.cf
X%%DOCSDIR%%/examples/unit_edit_insert_lines_silly.cf
X%%DOCSDIR%%/examples/unit_compare.cf
X%%DOCSDIR%%/examples/unit_createdb.cf
X%%DOCSDIR%%/examples/unit_user_edit_method.cf
X%%DOCSDIR%%/examples/unit_hash.cf
X%%DOCSDIR%%/examples/unit_sql.cf
X%%DOCSDIR%%/examples/unit_method_polymorph.cf
X%%DOCSDIR%%/examples/unit_syslog2.cf
X%%DOCSDIR%%/examples/unit_groupexists.cf
X%%DOCSDIR%%/examples/unit_edit_insert_lines.cf
X%%DOCSDIR%%/examples/unit_loops.cf
X%%DOCSDIR%%/examples/unit_server_copy_localhost.cf
X%%DOCSDIR%%/examples/unit_escape.cf
X%%DOCSDIR%%/examples/unit_vars.cf
X%%DOCSDIR%%/examples/unit_copy_classes.cf
X%%DOCSDIR%%/examples/unit_parallel_exec.cf
X%%DOCSDIR%%/examples/unit_method.cf
X%%DOCSDIR%%/examples/unit_select_class.cf
X%%DOCSDIR%%/examples/unit_copy_copbl.cf
X%%DOCSDIR%%/examples/unit_inventory_cpu.cf
X%%DOCSDIR%%/examples/unit_hashcomment.cf
X%%DOCSDIR%%/examples/unit_report_diffs.cf
X%%DOCSDIR%%/examples/unit_registry.cf
X%%DOCSDIR%%/examples/unit_postfix.cf
X%%DOCSDIR%%/examples/unit_cf2_integration.cf
X%%DOCSDIR%%/examples/unit_product.cf
X%%DOCSDIR%%/examples/unit_getgid.cf
X%%DOCSDIR%%/examples/unit_process_restart.cf
X%%DOCSDIR%%/examples/unit_edit_replace_string.cf
X%%DOCSDIR%%/examples/unit_host2ip.cf
X%%DOCSDIR%%/examples/unit_report_state.cf
X%%DOCSDIR%%/examples/unit_iteration.cf
X%%DOCSDIR%%/examples/unit_acl_ntfs.cf
X%%DOCSDIR%%/examples/unit_isplain.cf
X%%DOCSDIR%%/examples/unit_strcmp.cf
X%%DOCSDIR%%/examples/unit_varclass.cf
X%%DOCSDIR%%/examples/unit_service_disable.cf
X%%DOCSDIR%%/examples/unit_arrays.cf
X%%DOCSDIR%%/examples/unit_hostsseen.cf
X%%DOCSDIR%%/examples/unit_fileexists.cf
X%%DOCSDIR%%/examples/unit_edit_setvar.cf
X%%DOCSDIR%%/examples/unit_userexists.cf
X%%DOCSDIR%%/examples/unit_setvar.cf
X%%DOCSDIR%%/examples/unit_customize_by_named_list.cf
X%%DOCSDIR%%/examples/unit_syslog.cf
X%%DOCSDIR%%/examples/unit_log_private.cf
X%%DOCSDIR%%/examples/unit_module_exec.cf
X%%DOCSDIR%%/examples/unit_null_config.cf
X%%DOCSDIR%%/examples/unit_copylinks.cf
X%%DOCSDIR%%/examples/unit_software_update_version_yum.cf
X%%DOCSDIR%%/examples/unit_pathtype.cf
X%%DOCSDIR%%/examples/unit_global_list_expansion_2.cf
X%%DOCSDIR%%/examples/unit_package_latest.cf
X%%DOCSDIR%%/examples/unit_services_concept.cf
X%%DOCSDIR%%/examples/unit_varnet.cf
X%%DOCSDIR%%/examples/active_directory.cf
X%%DOCSDIR%%/examples/unit_accumulated_time.cf
X%%DOCSDIR%%/examples/unit_package_freebsd.cf
X%%DOCSDIR%%/examples/unit_linking.cf
X%%DOCSDIR%%/examples/unit_process_matching2.cf
X%%DOCSDIR%%/examples/unit_ago.cf
X%%DOCSDIR%%/examples/unit_helloworld.cf
X%%DOCSDIR%%/examples/unit_islink.cf
X%%DOCSDIR%%/examples/unit_ldap.cf
X%%DOCSDIR%%/examples/unit_selectservers.cf
X%%DOCSDIR%%/examples/unit_edit_triggerclass.cf
X%%DOCSDIR%%/examples/unit_reg_multiline.cf
X%%DOCSDIR%%/examples/unit_test_environment.cf
X%%DOCSDIR%%/examples/promise_knowledge.cf
X%%DOCSDIR%%/examples/unit_tidy_all_files.cf
X%%DOCSDIR%%/examples/win_emergency.cf
X%%DOCSDIR%%/examples/unit_services_win.cf
X%%DOCSDIR%%/examples/unit_process_matching3.cf
X%%DOCSDIR%%/examples/unit_zenoss.cf
X%%DOCSDIR%%/examples/unit_control_expand.cf
X%%DOCSDIR%%/examples/unit_method_var.cf
X%%DOCSDIR%%/examples/unit_id.cf
X%%DOCSDIR%%/examples/unit_process_signalling.cf
X%%DOCSDIR%%/examples/unit_edit_column_files.cf
X%%DOCSDIR%%/examples/unit_user_edit.cf
X%%DOCSDIR%%/examples/unit_mount_fs.cf
X%%DOCSDIR%%/examples/unit_template.cf
X%%DOCSDIR%%/examples/unit_create_filedir.cf
X%%DOCSDIR%%/examples/unit_select_mode.cf
X%%DOCSDIR%%/examples/unit_filesexist.cf
X at dirrm %%DOCSDIR%%/examples
X at dirrm %%DOCSDIR%%/example_config
X at dirrm %%DOCSDIR%%
X at dirrm share/cfengine33
8c3b18a2bdfadcd8ac388c8833c64f33
exit



More information about the freebsd-ports-bugs mailing list