of the specified files or directories are modified. fswatch implements four
kinds of monitors:
* A monitor based on the File System Events API of Apple OS X.
* A monitor based on kqueue, an event notification interface introduced in
FreeBSD 4.1 and supported on most *BSD systems (including OS X).
* A monitor based on inotify, a Linux kernel subsystem that reports file
system changes to applications.
* A monitor which periodically stats the file system, saves file modification
times in memory and manually calculates file system changes, which can work
on any operating system where stat (2) can be used.
fswatch should build and work correctly on any system shipping either of the
aforementioned APIs.
WWW: https://github.com/emcrisostomo/fswatch
PR: 200552
Submitted by: Enrico M. Crisostomo <enrico.m.crisostomo@gmail.com>
Fix issues with replication.
- Do not require all '-r dataset' arguments to be listed first.
- Fix error checking.
If only one argument to 'zap rep' was supplied, replication would
silently fail. This required breaking the interface. Instead of
zap rep|replicate [-dLSv] [[-r dataset]... [dataset]... remote_dest]
the format is now
zap rep|replicate [-dLSv] [remote_dest [-r] dataset [[-r] dataset]...].
Fix issue with destroy.
- In 0.6.3 $zptn was updated in destroy() to be an extended regular
expression. But, when a host was not supplied as an argument, grep -E
was still being supplied with the initial $zptn value containing a
basic regular expression.
With 'zap snap', do not require all '-r dataset' arguments to be listed
first.
Reviewed by: AMDmi3
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D9086
* Python 3.6 is now supported, critical bug fixed (#302)
* Commands: Better handling of return codes for pipelines (#288)
* Paths: Return split support (regression) (#286) - also supports dummy args
for better ``str`` compatibility
* Paths: Added support for Python 3.6 path protocol
* Paths: Support Python's ``in`` syntax
* CLI: Added Config parser (provisional) (#304)
* Color: image plots with `python -m plumbum.cli.image` (#304)
* SSH: No longer hangs on failure (#306)
* Test improvements, especially on non-linux systems
Changes in version 0.6.0:
- Add remote replication support.
- Rework command options to be similar to the zfs command.
Changes in version 0.6.1:
- Fix incorrect replication example in the documentation.
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D9043
- client: Fixed a race condition and remove panic
when handling duplicate allocations
- client: Cancel wait for remote allocation if migration is no longer required
- client: Failure to stat a single mountpoint does not cause all of host
resource usage collection to fail
PR: 215744
Submitted by: jhixson@gmail.com (maintainer)
If you want to set WRKSRC, set GH_PROJECT instead.
- The GitHub URLs are case insensitive, but the distribution files you
get out of them are not.
- If the repository was renamed, the old URL will still work, but the
distribution name will be ith the new name.
Sponsored by: Absolight
Munin seems to read all the files in its .d directory, so the .sample is
always read after the actual .conf, and overwrites its defaults.
Which is, obviously, a bad thing.
Sponsored by: Absolight