diff options
author | pjd <pjd@FreeBSD.org> | 2011-10-17 12:22:09 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2011-10-17 12:22:09 +0000 |
commit | ed683cf8c092fc83ec193651a4e1914f6610f85e (patch) | |
tree | ed581c98e9e64f566fbadf549ad25da46a4735d3 /sbin/hastd/token.l | |
parent | 06a2c15f452d62f9166c4e492976c34c07495c9a (diff) | |
download | FreeBSD-src-ed683cf8c092fc83ec193651a4e1914f6610f85e.zip FreeBSD-src-ed683cf8c092fc83ec193651a4e1914f6610f85e.tar.gz |
Allow to specify pidfile in HAST configuration file.
MFC after: 1 week
Diffstat (limited to 'sbin/hastd/token.l')
-rw-r--r-- | sbin/hastd/token.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/hastd/token.l b/sbin/hastd/token.l index 3a868d7..0d15075 100644 --- a/sbin/hastd/token.l +++ b/sbin/hastd/token.l @@ -46,6 +46,7 @@ int lineno; %% control { DP; return CONTROL; } +pidfile { DP; return PIDFILE; } listen { DP; return LISTEN; } port { DP; return PORT; } replication { DP; return REPLICATION; } |