Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-18 | remove unused variables | Thomas Hindoe Paaboel Andersen | |
2013-11-14 | activate: fix crash when -s is passed | Mantas Mikulėnas | |
getopt_long() was told to accept -s which was never implemented. | |||
2013-11-14 | activate: mention -E in the help text | Mantas Mikulėnas | |
2013-11-08 | clients: fix some signal handler issues | Lennart Poettering | |
2013-11-07 | activate: print a nice message if no fd to listen on was specified | Lennart Poettering | |
2013-11-07 | build-sys: add Makefile symlink for src/activate/ | Lennart Poettering | |
2013-11-07 | activate: port to use new getpeername_pretty()/getsockname_pretty() calls | Lennart Poettering | |
2013-11-07 | activate: fix uninitialized memory | Lennart Poettering | |
2013-11-06 | active: rework make_socket_fd() to be based on socket_address_listen() | Lennart Poettering | |
Among other things this makes sure we set SO_REUSEADDR which is immensely useful. | |||
2013-11-06 | activate: reduce log settings to normal | Lennart Poettering | |
2013-11-06 | activate: get rid of redundant definiton of fd_cloexec() | Lennart Poettering | |
2013-11-06 | clients: unify how we invoke getopt_long() | Lennart Poettering | |
Among other things this makes sure we always expose a --version command and show it in the help texts. | |||
2013-07-02 | replace tabs with spaces in various files | Jason St. John | |
The affected files in this patch had inconsistent use of tabs vs. spaces for indentation, and this patch eliminates the stray tabs. Also, the opening brace of sigchld_hdl() in activate.c was moved so the opening braces are consistent throughout the file. | |||
2013-04-18 | move _cleanup_ attribute in front of the type | Harald Hoyer | |
http://lists.freedesktop.org/archives/systemd-devel/2013-April/010510.html | |||
2013-03-31 | activate: do not leak envp on error | Zbigniew Jędrzejewski-Szmek | |
2013-03-20 | activate: avoid warning from -Wshadow | Zbigniew Jędrzejewski-Szmek | |
src/activate/activate.c:167:51: warning: declaration shadows a variable in the global scope [-Wshadow] static int launch(char* name, char **argv, char **environ, int fds) { ^ /usr/include/unistd.h:546:15: note: previous declaration is here extern char **environ; ^ | |||
2013-03-15 | systemd-activate: pass environment variables through | Zbigniew Jędrzejewski-Szmek | |
I need this to test half-installed socket-activated python script, which requires PYTHONPATH and LD_LIBRARY_PATH set. I assume that other people might find it useful to. -E VAR passes through VAR from the environment, while -E VAR=value sets VAR=value. systemd-activate -E PYTHONPATH=/var/tmp/inst1/usr/lib64/python3.3/site-packages -E LD_LIBRARY_PATH=/var/tmp/inst1/usr/lib -l 2000 python3 -c 'from systemd.daemon import listen_fds; print(listen_fds())' | |||
2013-02-27 | systemd-activate: add a socket-activation test tool | Zbigniew Jędrzejewski-Szmek | |