diff options
author | 2007-12-11 20:12:23 +0000 | |
---|---|---|
committer | 2007-12-11 20:12:23 +0000 | |
commit | a97d2a770c9549c81e6902d8ff738554c2d6974a (patch) | |
tree | 9947953dc0bcc15b52dc4fc00637e289cb958635 /net-proxy/sshproxy/files | |
parent | arm/sh stable (diff) | |
download | gentoo-2-a97d2a770c9549c81e6902d8ff738554c2d6974a.tar.gz gentoo-2-a97d2a770c9549c81e6902d8ff738554c2d6974a.tar.bz2 gentoo-2-a97d2a770c9549c81e6902d8ff738554c2d6974a.zip |
Version bump (#201816).
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-proxy/sshproxy/files')
-rw-r--r-- | net-proxy/sshproxy/files/digest-sshproxy-0.6.0_beta0 | 3 | ||||
-rw-r--r-- | net-proxy/sshproxy/files/sshproxy.ini | 14 | ||||
-rw-r--r-- | net-proxy/sshproxy/files/sshproxyd.initd | 7 |
3 files changed, 14 insertions, 10 deletions
diff --git a/net-proxy/sshproxy/files/digest-sshproxy-0.6.0_beta0 b/net-proxy/sshproxy/files/digest-sshproxy-0.6.0_beta0 new file mode 100644 index 000000000000..3c038d14b287 --- /dev/null +++ b/net-proxy/sshproxy/files/digest-sshproxy-0.6.0_beta0 @@ -0,0 +1,3 @@ +MD5 28b12a3a3e12cba94080821f989f3b30 sshproxy-0.6.0_beta0.tar.gz 126549 +RMD160 381c83ab9db5a0c306dd0df52a3e29c64f7ed04a sshproxy-0.6.0_beta0.tar.gz 126549 +SHA256 1915989a98a3fcb6a4769feacb31eeb40003660370c1068bdaa5e847339a3da4 sshproxy-0.6.0_beta0.tar.gz 126549 diff --git a/net-proxy/sshproxy/files/sshproxy.ini b/net-proxy/sshproxy/files/sshproxy.ini index 983669d6146a..c37cb374b3d2 100644 --- a/net-proxy/sshproxy/files/sshproxy.ini +++ b/net-proxy/sshproxy/files/sshproxy.ini @@ -1,26 +1,26 @@ [sshproxy] max_connections = 0 -client_db = file_db +client_db = ini_db pkey_id = sshproxy@%HOSTNAME% plugin_dir = /usr/lib/sshproxy -plugin_list = file_db +plugin_list = ini_db port = 2242 logger_conf = /usr/share/sshproxy/logger.conf cipher_type = blowfish log_dir = /var/log/sshproxy -acl_db = file_db -site_db = file_db +acl_db = ini_db +site_db = ini_db listen_on = auto_add_key = no [blowfish] secret = %BLOWFISH_SECRET% -[client_db.file] +[client_db.ini] file = /var/lib/sshproxy/client.db -[acl_db.file] +[acl_db.ini] file = /var/lib/sshproxy/acl.db -[site_db.file] +[site_db.ini] db_path = /var/lib/sshproxy/site.db diff --git a/net-proxy/sshproxy/files/sshproxyd.initd b/net-proxy/sshproxy/files/sshproxyd.initd index 02e3bdcc35f0..52dd72a771ee 100644 --- a/net-proxy/sshproxy/files/sshproxyd.initd +++ b/net-proxy/sshproxy/files/sshproxyd.initd @@ -7,10 +7,11 @@ depend() { start() { ebegin "Starting SSH Proxy daemon" - start-stop-daemon --start --exec /usr/bin/sshproxyd -- \ + start-stop-daemon --start --background \ + --pidfile /var/run/sshproxyd.pid --exec /usr/bin/sshproxyd -- \ --daemon --user ${SSHPROXYD_USER:-sshproxy} \ - --config-dir ${SSHPROXYD_CONFDIR:-/etc/sshproxy} \ - --pid /var/run/sshproxyd.pid + --config-dir ${SSHPROXYD_CONFDIR:-/etc/sshproxy} \ + --pid /var/run/sshproxyd.pid eend $? } |