You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
342 B
9 lines
342 B
#!/bin/sh |
|
|
|
inotifywait -q -m --format '%f' -e create /run/qemu-server/ | while read -r vm; do |
|
# Only act if the line is not empty |
|
if [ ${vm} ] && [ "$(echo ${vm} | sed -E 's/[0-9]{3}(\..*)/\1/')" = ".qmp" ]; then |
|
# The sed transforms 100.pid (or .whatever) to 100 |
|
creationRoutesVM $(echo ${vm} | sed -E 's/([0-9]{3})\..*/\1/') |
|
fi |
|
done
|
|
|