mirror of
https://github.com/YunoHost-Apps/libreerp_ynh.git
synced 2024-09-03 19:36:13 +02:00
Fix sudo
This commit is contained in:
parent
8ab34039ee
commit
76a2219caf
1 changed files with 6 additions and 6 deletions
|
@ -67,21 +67,21 @@ function setup_database() {
|
||||||
# Load translation
|
# Load translation
|
||||||
#param=" --without-demo True --addons-path $final_path/$appname/addons --db_user $app --db_password $db_pass --db_host 127.0.0.1 --db_port 5432 --db-filter '^$app\$' -d $app "
|
#param=" --without-demo True --addons-path $final_path/$appname/addons --db_user $app --db_password $db_pass --db_host 127.0.0.1 --db_port 5432 --db-filter '^$app\$' -d $app "
|
||||||
param=" -c $conf_file -d $app "
|
param=" -c $conf_file -d $app "
|
||||||
sudo -u $app $bin_file -c $conf_file --stop-after-init -i base -d $app
|
ynh_exec_as $app $bin_file -c $conf_file --stop-after-init -i base -d $app
|
||||||
sudo -u $app $bin_file -c $conf_file --stop-after-init -i auth_ldap -d $app
|
ynh_exec_as $app $bin_file -c $conf_file --stop-after-init -i auth_ldap -d $app
|
||||||
sudo -u $app $bin_file -c $conf_file --stop-after-init --load-language $lang -d $app
|
ynh_exec_as $app $bin_file -c $conf_file --stop-after-init --load-language $lang -d $app
|
||||||
# Configure language, timezone and ldap
|
# Configure language, timezone and ldap
|
||||||
sudo -u $app $bin_file shell -c $conf_file -d $app <<< \
|
ynh_exec_as $app $bin_file shell -c $conf_file -d $app <<< \
|
||||||
"
|
"
|
||||||
self.env['res.users'].search([['login', '=', 'admin']])[0].write({'password': '$admin_password'})
|
self.env['res.users'].search([['login', '=', 'admin']])[0].write({'password': '$admin_password'})
|
||||||
self.env.cr.commit()
|
self.env.cr.commit()
|
||||||
"
|
"
|
||||||
sudo -u $app $bin_file shell -c $conf_file -d $app <<< \
|
ynh_exec_as $app $bin_file shell -c $conf_file -d $app <<< \
|
||||||
"
|
"
|
||||||
self.write({'tz':'$tz','lang':'$lang'})
|
self.write({'tz':'$tz','lang':'$lang'})
|
||||||
self.env.cr.commit()
|
self.env.cr.commit()
|
||||||
"
|
"
|
||||||
sudo -u $app $bin_file shell -c $conf_file -d $app <<< \
|
ynh_exec_as $app $bin_file shell -c $conf_file -d $app <<< \
|
||||||
"
|
"
|
||||||
template=env['res.users'].create({
|
template=env['res.users'].create({
|
||||||
'login':'template',
|
'login':'template',
|
||||||
|
|
Loading…
Reference in a new issue