diff options
Diffstat (limited to 'python/guestfs.py')
-rw-r--r-- | python/guestfs.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py index e2989223..1596bcdb 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1233,3 +1233,12 @@ class GuestFS: """ return libguestfsmod.dmesg (self._o) + def ping_daemon (self): + u"""This is a test probe into the guestfs daemon running + inside the qemu subprocess. Calling this function checks + that the daemon responds to the ping message, without + affecting the daemon or attached block device(s) in any + other way. + """ + return libguestfsmod.ping_daemon (self._o) + |