# HG changeset patch # User RhodeCode Admin # Date 2024-02-27 08:44:28 # Node ID add255507785864e9e24d8fe5d7945d7d8e2fa87 # Parent 585ee4508a3a79a32b324f4e064ecfa80dd63112 settings: remove links to rccontrol from settings and default to the docker image paths diff --git a/rhodecode/apps/ssh_support/__init__.py b/rhodecode/apps/ssh_support/__init__.py --- a/rhodecode/apps/ssh_support/__init__.py +++ b/rhodecode/apps/ssh_support/__init__.py @@ -42,9 +42,9 @@ def _sanitize_settings_and_apply_default settings_maker.make_setting(config_keys.wrapper_cmd, '') settings_maker.make_setting(config_keys.authorized_keys_line_ssh_opts, '') - settings_maker.make_setting(config_keys.ssh_hg_bin, '~/.rccontrol/vcsserver-1/profile/bin/hg') - settings_maker.make_setting(config_keys.ssh_git_bin, '~/.rccontrol/vcsserver-1/profile/bin/git') - settings_maker.make_setting(config_keys.ssh_svn_bin, '~/.rccontrol/vcsserver-1/profile/bin/svnserve') + settings_maker.make_setting(config_keys.ssh_hg_bin, '/usr/local/bin/rhodecode_bin/vcs_bin/hg') + settings_maker.make_setting(config_keys.ssh_git_bin, '/usr/local/bin/rhodecode_bin/vcs_bin/git') + settings_maker.make_setting(config_keys.ssh_svn_bin, '/usr/local/bin/rhodecode_bin/vcs_bin/svnserve') settings_maker.env_expand()