morganwillcock opened a new pull request, #543: URL: https://github.com/apache/guacamole-server/pull/543
This adds an additional configure argument `--with-systemd-user`. I've tried to follow the pattern of how other configure arguments and variables are defined. The indentation style for the changes in Makefile.am is taken from [an example in the Automake manual](https://www.gnu.org/software/automake/manual/html_node/Scripts.html), using an additional space character to indent a multi-line command. Here are some examples which show the additional configure output: ``` $ ./configure --help | grep -A2 with-systemd-user --with-systemd-user=<username> the user configured in the systemd unit to run guacd [default=daemon] $ 2>/dev/null ./configure | grep -B1 'Systemd user:' Systemd units: no Systemd user: no $ 2>/dev/null ./configure --with-systemd-dir=/etc/systemd/system | grep -B1 'Systemd user:' Systemd units: /etc/systemd/system Systemd user: daemon $ 2>/dev/null ./configure --with-systemd-dir=/etc/systemd/system --with-systemd-user=guacd | grep -B1 'Systemd user:' Systemd units: /etc/systemd/system Systemd user: guacd ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org