2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00

fix: use frappe_user from site_config and use getpass as fallback

This commit is contained in:
Gavin D'souza 2020-03-17 17:25:30 +05:30
parent 2fe5cce6d4
commit a6f72c770f

View File

@ -6,6 +6,7 @@ import subprocess
# imports - module imports
from bench.cli import change_uid_msg
from bench.config.production_setup import get_supervisor_confdir, is_centos7
from bench.config.common_site_config import get_config
from bench.utils import exec_cmd, get_bench_name, get_cmd_output
@ -34,7 +35,7 @@ def is_production_set(bench_path):
def execute(bench_path):
user = getpass.getuser()
user = get_config('.').get("frappe_user") or getpass.getuser()
if is_sudoers_set():
exec_cmd("sudo bench setup sudoers {user}".format(user=user))