2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-22 20:19:01 +00:00

[fix] installer - sudo user

This commit is contained in:
Anand Doshi 2016-06-30 16:40:07 +05:30
parent e9d58e40c4
commit fc2dbb976c

View File

@ -66,17 +66,18 @@ def install_bench(args):
if not args.run_travis:
clone_bench_repo(args)
if is_sudo_user() and not args.user and not args.production:
raise Exception('Please run this script as a non-root user with sudo privileges, but without using sudo or pass --user=USER')
if not args.user:
if args.production:
args.user = 'frappe'
elif os.environ.has_key('SUDO_USER'):
args.user = os.environ['SUDO_USER']
else:
args.user = getpass.getuser()
if args.user == 'root':
raise Exception('--user cannot be root')
raise Exception('Please run this script as a non-root user with sudo privileges, but without using sudo or pass --user=USER')
# create user if not exists
extra_vars = vars(args)