| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 18 Jan 2026 13:11:42 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20060826132654
location: https://web.archive.org/web/20060826132654/https://cfengine.darwinports.com/
server-timing: captures_list;dur=1.567294, exclusion.robots;dur=0.084900, exclusion.robots.policy;dur=0.067634, esindex;dur=0.012918, cdx.remote;dur=272.908730, LoadShardBlock;dur=1039.438615, PetaboxLoader3.resolve;dur=243.356574, PetaboxLoader3.datanode;dur=552.890422
x-app-server: wwwb-app28-dc8
x-ts: 302
x-tr: 1397
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app28; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 18 Jan 2026 13:11:43 GMT
content-type: text/html; charset=ISO-8859-1
x-archive-orig-date: Sat, 26 Aug 2006 13:38:50 GMT
x-archive-orig-server: Apache
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Sat, 26 Aug 2006 13:26:54 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 29_0_20060826131923_crawl24-c/29_0_20060826132506_crawl31.arc.gz
server-timing: captures_list;dur=0.915124, exclusion.robots;dur=0.044312, exclusion.robots.policy;dur=0.028499, esindex;dur=0.015603, cdx.remote;dur=57.364871, LoadShardBlock;dur=372.135412, PetaboxLoader3.datanode;dur=440.014089, load_resource;dur=249.616320, PetaboxLoader3.resolve;dur=87.574504
x-app-server: wwwb-app28-dc8
x-ts: 200
x-tr: 834
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
cfengine version 2.1.19p1 for Mac OS X 10.4 Tiger
|
|||||||||
Saturday the 26th of August, 2006 |
|||||||||
cfengine
The raw portfile for cfengine 2.1.19p1 is located here: https://cfengine.darwinports.com/dports/sysutils/cfengine/Portfile Find related portfiles with the new DarwinPorts.com search feature.
# $Id: Portfile,v 1.17 2006/04/04 03:28:05 markd Exp $ PortSystem 1.0 Name: cfengine Version: 2.1.19p1 Category: sysutils Maintainers: darwinports Description: a tool for setting up and maintaining computer systems Long Description: Cfengine, or the configuration engine is an autonomous agent and a middle to high level policy language for building expert systems which administrate and configure large computer networks. Homepage: https://www.cfengine.org/ master_sites ftp://ftp.iu.hio.no/pub/cfengine/ ftp://sunsite.uio.no/pub/cfengine/ https://ftp.us.xemacs.org/ftp/pub/cfengine/cfengine-ftp/ checksums sha1 797392b67c6624ed7483f72f127b7873af9249da Platform: darwin depends_lib port:db4 port:openssl port:pcre post-patch { cd ${worksrcpath} foreach manfile [glob doc/*.8] { reinplace "s|/usr/local|${prefix}|g" $manfile reinplace "s|/var/cfengine|${prefix}&|g" $manfile } } set cfworkdir ${prefix}/var/cfengine configure.args --mandir='\${prefix}/share/man' --infodir='\${prefix}/share/info' --with-workdir="${cfworkdir}" --with-berkeleydb=default --with-openssl=default --with-pcre=default --with-docs build.args ps_DATA= destroot.args ps_DATA= pre-destroot { if {$env(USER) != "root"} { ui_msg "-----------------------------------------------------------" ui_msg "Note that you are not running as root, so files installed" ui_msg "by this port will not end up with proper ownership and" ui_msg "likely not work correctly with ${name}." ui_msg "-----------------------------------------------------------" } } destroot.keepdirs ${destroot}${cfworkdir}/bin ${destroot}${cfworkdir}/inputs ${destroot}${cfworkdir}/modules ${destroot}${cfworkdir}/outputs ${destroot}${cfworkdir}/ppkeys ${destroot}${cfworkdir}/rpc_in ${destroot}${cfworkdir}/rpc_out ${destroot}${cfworkdir}/state post-destroot { # Create cfengine directories xinstall -d -m 0755 ${destroot}${cfworkdir} # Create cfengine sub-directories foreach subdir {bin modules state} { xinstall -d -m 0755 ${destroot}${cfworkdir}/${subdir} } foreach subdir {inputs masterfiles/inputs outputs ppkeys rpc_in rpc_out} { xinstall -d -m 0700 ${destroot}${cfworkdir}/${subdir} } # Create distribution sample conf files set hostname [exec hostname] set host [lindex [split ${hostname} {.}] 0] set domain [join [lrange [split ${hostname} {.}] 1 end] {.}] set timezone [exec date +%Z] foreach conf {cfagent.conf cfservd.conf update.conf cfrun.hosts} { xinstall -m 0644 ${filespath}/${conf}.in ${destroot}${cfworkdir}/masterfiles/inputs/${conf}-dist reinplace "s|__PREFIX|${prefix}|g" ${destroot}${cfworkdir}/masterfiles/inputs/${conf}-dist reinplace "s|__CFWORKDIR|${cfworkdir}|g" ${destroot}${cfworkdir}/masterfiles/inputs/${conf}-dist reinplace "s|__HOST|${host}|g" ${destroot}${cfworkdir}/masterfiles/inputs/${conf}-dist reinplace "s|__DOMAIN|${domain}|g" ${destroot}${cfworkdir}/masterfiles/inputs/${conf}-dist reinplace "s|__TIMEZONE|${timezone}|g" ${destroot}${cfworkdir}/masterfiles/inputs/${conf}-dist } # Create startup rc script (if non-Darwin) if {![variant_isset darwin]} { xinstall -d -m 0755 ${destroot}${prefix}/etc/rc.d xinstall -m 0755 ${filespath}/${name}.sh.in ${destroot}${prefix}/etc/rc.d/${name}.sh reinplace "s|__PREFIX|${prefix}|" ${destroot}${prefix}/etc/rc.d/${name}.sh reinplace "s|__CFWORKDIR|${cfworkdir}|" ${destroot}${prefix}/etc/rc.d/${name}.sh } } post-activate { # Make sure initial conf files are present and setup correctly if {![file exists ${cfworkdir}/inputs/update.conf]} { xinstall -m 0644 ${cfworkdir}/masterfiles/inputs/update.conf-dist ${cfworkdir}/inputs/update.conf } foreach conf {cfagent.conf cfservd.conf update.conf cfrun.hosts} { if {![file exists ${cfworkdir}/masterfiles/inputs/${conf}]} { xinstall -m 0644 ${cfworkdir}/masterfiles/inputs/${conf}-dist ${cfworkdir}/masterfiles/inputs/${conf} } } # Check for root public-private keys, create if missing if {![file exists ${cfworkdir}/ppkeys/localhost.priv] || ![file exists ${cfworkdir}/ppkeys/localhost.pub]} { if {[file exists ${cfworkdir}/ppkeys/localhost.priv]} { file delete -force ${cfworkdir}/ppkeys/localhost.priv } if {[file exists ${cfworkdir}/ppkeys/localhost.pub]} { file delete -force ${cfworkdir}/ppkeys/localhost.pub } system "${prefix}/sbin/cfkey" } } Variant: psdocs { depends_build bin:tex:teTeX bin:texinfo:texinfo build.args-delete ps_DATA= destroot.args-delete ps_DATA= } platform darwin { startupitem.create yes startupitem.name Cfengine startupitem.start "\[ -x ${cfworkdir}/bin/cfservd \] && ${cfworkdir}/bin/cfservd" startupitem.start-append "\[ -x ${cfworkdir}/bin/cfenvd \] && ${cfworkdir}/bin/cfenvd -H" startupitem.start-append "\[ -x ${cfworkdir}/bin/cfexecd \] && ${cfworkdir}/bin/cfexecd" startupitem.start-append "(\[ -x ${cfworkdir}/bin/cfservd \] && \[ -x ${cfworkdir}/bin/cfenvd \] && \\" startupitem.start-append " \[ -x ${cfworkdir}/bin/cfexecd \] && \[ -x ${cfworkdir}/bin/cfagent \]) \\" startupitem.start-append "\t|| ${prefix}/sbin/cfagent --no-splay -f update.conf" startupitem.stop "/usr/bin/killall -SIGUSR1 cfagent 2>/dev/null" startupitem.stop-append "/usr/bin/killall -SIGUSR1 cfexecd 2>/dev/null" startupitem.stop-append "/usr/bin/killall -SIGUSR1 cfenvd 2>/dev/null" startupitem.stop-append "/usr/bin/killall -SIGUSR1 cfservd 2>/dev/null" } If you haven't already installed Darwin Ports, you can find easy instructions for doing so at the main Darwin Ports page. Once Darwin Ports has been installed, in a terminal window and while online, type the following and hit return:
% sudo port install cfengineYou will then be prompted for your root password, which you should enter. You may have to wait for a few minutes while the software is retrieved from the network and installed for you. Y ou should see something that looks similar to: - Make sure that you do not close the terminal window while Darwin Ports is working. Once the software has been installed, you can find further information about using cfengine with these commands: % man cfengine Where to find more information:
This website uses many .png's so it looks best in Firefox or Safari.
|
![]() |
Download the Darwinports 1.2 Installer
Donate now to keep DarwinPorts.com online! Other Helpful SitesDarwinports WikiDarwin Source Debian Packages Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
aqua
archivers audio benchmarks cad comms cross databases devel editors emulators games genealogy gnome graphics irc java kde lang math multimedia net news palm perl python ruby science security shells sysutils textproc www x11 zope
Current CVS DownloadsDarwin Ports Current :nightly CVS snapshot OpenDarwin CVSWeb |
|||||||
| |



