vlog: Fix "/dev/log" test
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>
Mon, 2 Feb 2015 02:57:05 +0000 (11:57 +0900)
committerYAMAMOTO Takashi <yamamoto@valinux.co.jp>
Tue, 3 Feb 2015 05:17:45 +0000 (14:17 +0900)
commit 7905aae3fc1633c2c44c8fdb9e9d3a3d6e63439b
("vlog: Don't fail syslog initialization in chroot.")
uses os.path.isfile("/dev/log"), which tests if the given path
is a regular file, to see if syslog can be usable.

However, /dev/log is not a regular file for platforms I looked at.
    * On Ubuntu 14.04 and CentOS 6.5, /dev/log is a socket
    * On NetBSD-6, /dev/log is a symlink to a socket

Replace the test with os.path.exists() so that it can work
as intended for these platforms.

Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Acked-by: Gurucharan Shetty <gshetty@nicira.com>
python/ovs/vlog.py

index 107f18c..d5741a6 100644 (file)
@@ -295,7 +295,7 @@ class Vlog:
         logger = logging.getLogger('syslog')
         # If there is no infrastructure to support python syslog, increase
         # the logging severity level to avoid repeated errors.
-        if not os.path.isfile("/dev/log"):
+        if not os.path.exists("/dev/log"):
             logger.setLevel(logging.CRITICAL)
             return