# ChangeLog
+## 0.3.0 - unreleased
+
+* Inotify action for watching a folder in the host and issuing commands in the
+ guest upon change.
+
## 0.2.0 - 2024-07-02
* Increase default `msize` for 9p mounts to 32MiB depending on kernel support,
## Usability
+* Submit patch for spice-client-gtk for menuless windows (spice usecase) to
+ Debian.
+
* Docs (tutorial and manpage).
* Makefile and debian package.
-* Submit patch for spice-client-gtk for menuless windows (spicec usecase) to
- Debian.
-
* Systemd service for a single VM.
* Shell completions.
kvmx_restart
}
+# Inotify dispatcher
+function kvmx_inotify {
+ local watched="$1"
+
+ shift
+ local command="$*"
+
+ # Syntax check
+ if [ -z "$command" ]; then
+ echo "usage $BASENAME inotify $GUEST <watched> <command>"
+ echo "example: kvmx inotify $guest hostfolder make -C guestfolder compile"
+ exit 1
+ fi
+
+ # Check if watched exists
+ if [ ! -e "$watched" ]; then
+ echo "Not found: $watched"
+ exit 1
+ fi
+
+ # Dispatch
+ while inotifywait -r $watched; do
+ echo "$command" | kvmx_ssh
+ done
+}
+
# Dispatch
if type kvmx_$ACTION 2> /dev/null | grep -q "kvmx_$ACTION ()"; then
__kvmx_initialize $*