diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-07-21 01:11:36 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-21 01:11:36 +0200 |
commit | b179d94eb3b87e46721e7060386ff1a2f64669a6 (patch) | |
tree | 2d602225b423424100d022085376a36a765d0ff9 /openvpn/src/plugins/down-root/README.down-root | |
parent | 266db4b701d38f52fa246af45778bb2fcee9893c (diff) |
Update openvpn to Version 2.3_alpha3
Diffstat (limited to 'openvpn/src/plugins/down-root/README.down-root')
-rw-r--r-- | openvpn/src/plugins/down-root/README.down-root | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/openvpn/src/plugins/down-root/README.down-root b/openvpn/src/plugins/down-root/README.down-root new file mode 100644 index 00000000..d337ffe9 --- /dev/null +++ b/openvpn/src/plugins/down-root/README.down-root @@ -0,0 +1,29 @@ +down-root -- an OpenVPN Plugin Module + +SYNOPSIS + +The down-root module allows an OpenVPN configuration to +call a down script with root privileges, even when privileges +have been dropped using --user/--group/--chroot. + +This module uses a split privilege execution model which will +fork() before OpenVPN drops root privileges, at the point where +the --up script is usually called. The module will then remain +in a wait state until it receives a message from OpenVPN via +pipe to execute the down script. Thus, the down script will be +run in the same execution environment as the up script. + +BUILD + +Build this module with the "make" command. The plugin +module will be named openvpn-down-root.so + +USAGE + +To use this module, add to your OpenVPN config file: + + plugin openvpn-down-root.so "command ..." + +CAVEATS + +This module will only work on *nix systems, not Windows. |