| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 15 Jan 2026 02:42:20 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20070926234354
location: https://web.archive.org/web/20070926234354/https://cfengine.darwinports.com/
server-timing: captures_list;dur=3.892802, exclusion.robots;dur=0.078446, exclusion.robots.policy;dur=0.054961, esindex;dur=0.018827, cdx.remote;dur=29.410603, LoadShardBlock;dur=209.363065, PetaboxLoader3.datanode;dur=124.006183, PetaboxLoader3.resolve;dur=20.141799
x-app-server: wwwb-app219-dc8
x-ts: 302
x-tr: 272
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; 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: Thu, 15 Jan 2026 02:42:21 GMT
content-type: text/html; charset=ISO-8859-1
x-archive-orig-date: Wed, 26 Sep 2007 23:44:25 GMT
x-archive-orig-server: Apache
x-archive-orig-vary: Accept-Encoding
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Wed, 26 Sep 2007 23:43: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: IA-AROUND-THE-WORLD-2007-STAGE3-20070926213831-00005-crawling18-c/IA-AROUND-THE-WORLD-2007-STAGE3-20070926233717-00028-crawling01.us.archive.org.arc.gz
server-timing: captures_list;dur=0.743774, exclusion.robots;dur=0.027645, exclusion.robots.policy;dur=0.011557, esindex;dur=0.014323, cdx.remote;dur=13.906109, LoadShardBlock;dur=384.899388, PetaboxLoader3.datanode;dur=394.072802, PetaboxLoader3.resolve;dur=154.175570, load_resource;dur=175.455813
x-app-server: wwwb-app219-dc8
x-ts: 200
x-tr: 663
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
|
|||||||||
Wednesday the 26th of September, 2007 |
|||||||||
cfengine most recent diff
Scroll down toward the bottom of the page to get installation instructions for 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 unique DarwinPorts.com search feature. # $Id: Portfile 22004 2007-02-13 20:50:43Z pipping PortSystem 1.0 Name: cfengine Version: 2.1.19p1 Category: sysutils Maintainers: nomaintainer 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]} { delete ${cfworkdir}/ppkeys/localhost.priv } if {[file exists ${cfworkdir}/ppkeys/localhost.pub]} { delete ${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:
% cd /opt/local/bin/portslocation/dports/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 is back-ended by DB5, the best database in the business,
|
![]() |
![]() Digg cfengine on MacOSX
Other Helpful SitesMacOSForgeDebian Packages MacPorts - SVN Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
aqua
archivers audio benchmarks cad comms cross databases devel editors emulators games genealogy gnome gnustep 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 SSH Key Gen |
|||||||
| |




