Turns out that env(1) knows how to parse a properly quoted string
using -S "string", it makes the double eval used for the fetch
command to be unnecessary.
This is because running:
eval "foo $(escape $bar)"
is silly when this works:
foo $bar
So remove escaping and quoting, and sillyness.
PR: 210198
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6779
/tmp/geomWatch-a60166.o: In function `ZPool::update()':
geomWatch.cpp:(.text+0x4a7d): undefined reference to `illumos_nvlist_free'
geomWatch.cpp:(.text+0x5017): undefined reference to `illumos_nvlist_free'
geomWatch.cpp:(.text+0x5305): undefined reference to `illumos_nvlist_free'
Approved by: portmgr blanket
/tmp/geomWatch-4db8f7.o: In function `ZPool::update()':
geomWatch.cpp:(.text+0x4a92): undefined reference to `nvlist_free'
geomWatch.cpp:(.text+0x5046): undefined reference to `nvlist_free'
geomWatch.cpp:(.text+0x537f): undefined reference to `nvlist_free'
geom.hpp:33:21: fatal error: libgeom.h: No such file or directory
Reported by: pkg-fallout, DPorts
Approved by: portmgr blanket
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true,
as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107).
Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when
it is always needed, I renamed it, in one case, I merged two patches.
Differential Revision: https://reviews.freebsd.org/D2209
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other.
- No longer BROKEN on ZFS Version 6
- ${CP} sample to real configuration file if latter does not exist
PR: ports/146554
Submitted by: Boris Kochergin <spawk@acm.poly.edu> (maintainer)
Approved by: wxs@ (mentor)
- Note new functionality in COMMENT
- USE_RC_SUBR instead of manually installing rc script
- Use ${PORTNAME} where possible
PR: ports/146071
Submitted by: Boris Kochergin <spawk@acm.poly.edu> (maintainer)
Approved by: wxs@ (mentor)
checks the state of each configured provider at a configured interval, and, if
it notices that a provider has lost a component, or encounters a problem while
checking a provider's state, it will send an e-mail with details of the
matter--such as what components were lost and which remain, or, in the event of
a problem, what the problem was--to an arbitrary number of recipients, so that
corrective action can be taken (for example, replacing a failed disk).
WWW: http://acm.poly.edu/wiki/GEOM_Watch
-Boris Kochergin <spawk@acm.poly.edu>
PR: ports/142735
Submitted by: Boris Kochergin <spawk at acm.poly.edu>