diff options
author | Steven Kreuzer <skreuzer@FreeBSD.org> | 2016-05-04 12:52:33 +0000 |
---|---|---|
committer | Steven Kreuzer <skreuzer@FreeBSD.org> | 2016-05-04 12:52:33 +0000 |
commit | d0d4cae1ce6962924a8f258acc41fdd1de3bea26 (patch) | |
tree | 4a2092e19af74cd8541a746bae0ba17ed0a5eb89 | |
parent | 933a6c7ed8b629139e585f1fce20ded3783d174c (diff) | |
download | ports-d0d4cae1ce6962924a8f258acc41fdd1de3bea26.tar.gz ports-d0d4cae1ce6962924a8f258acc41fdd1de3bea26.zip |
Notes
-rw-r--r-- | sysutils/cfengine38/Makefile | 1 | ||||
-rw-r--r-- | sysutils/cfengine38/files/patch-cf-agent_verify__storage.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/cfengine38/Makefile b/sysutils/cfengine38/Makefile index a4ed6dcb067b..effc5c230313 100644 --- a/sysutils/cfengine38/Makefile +++ b/sysutils/cfengine38/Makefile @@ -3,6 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.8.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ diff --git a/sysutils/cfengine38/files/patch-cf-agent_verify__storage.c b/sysutils/cfengine38/files/patch-cf-agent_verify__storage.c new file mode 100644 index 000000000000..92b02b0d08fd --- /dev/null +++ b/sysutils/cfengine38/files/patch-cf-agent_verify__storage.c @@ -0,0 +1,11 @@ +--- cf-agent/verify_storage.c.orig 2016-05-03 13:42:49 UTC ++++ cf-agent/verify_storage.c +@@ -132,7 +132,7 @@ PromiseResult VerifyStoragePromise(EvalC + PromiseResult result = PROMISE_RESULT_NOOP; + + #ifndef __MINGW32__ +- if ((SeqLength(GetGlobalMountedFSList())) && (!LoadMountInfo(GetGlobalMountedFSList()))) ++ if ((!SeqLength(GetGlobalMountedFSList())) && (!LoadMountInfo(GetGlobalMountedFSList()))) + { + Log(LOG_LEVEL_ERR, "Couldn't obtain a list of mounted filesystems - aborting"); + YieldCurrentLock(thislock); |