Commit Briefs

Omar Polo

const-ify some tables

matches found with % grep -R '=[ ]*{' . | fgrep -v const


Omar Polo

get rid of `which` in the configure too

should have been done already in 12fcba2; reminded by Allen Sobot, thanks!


Omar Polo

configure: allow to set MANDIR from args

diff by Allen Sobot (chilledfrogs at disroot dot org), thanks!


Omar Polo

mention gmid.sysusers in contrib together with gmid.service

related to github issue #14


Omar Polo

add missing newline



omar-polo

add systemd-sysusers' config file


Omar Polo

use shell built-in `command' instead of which(1)

it's specified by POSIX AFAIK and requires less redirections.


Omar Polo

fix email


Omar Polo

sync changelog


Omar Polo

document the type { ... } block


Omar Polo

add tests for the type block


Omar Polo

add type { ... } block to define mime types mapping

The `map' rule is powerful but quite annoying to use if you have/need lots of entries (and clutters the configuration file too.) The `type' block is blatantly stolen from httpd(8) and allows for a way more nice usage: type { include "/usr/share/misc/mime.types" } or even type { text/markdown md markdown text/x-perl pl pm # ... }



Omar Polo

don't log errno, it's always zero after libtls returns

The libevent error value is much more interesting! see github issue #13