Skip to content

Commit eeee4c0

Browse files
authored
[FIX] Append .log extension to file
This got lost in the migration from 10.0 to 11.0
1 parent 1067ca0 commit eeee4c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

odoo_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ echo -e "* Creating server config file"
153153
sudo su root -c "printf '[options] \n; This is the password that allows database operations:\n' >> /etc/${OE_CONFIG}.conf"
154154
sudo su root -c "printf 'admin_passwd = ${OE_SUPERADMIN}\n' >> /etc/${OE_CONFIG}.conf"
155155
sudo su root -c "printf 'xmlrpc_port = ${OE_PORT}\n' >> /etc/${OE_CONFIG}.conf"
156-
sudo su root -c "printf 'logfile = /var/log/${OE_USER}/${OE_CONFIG}\n' >> /etc/${OE_CONFIG}.conf"
156+
sudo su root -c "printf 'logfile = /var/log/${OE_USER}/${OE_CONFIG}.log\n' >> /etc/${OE_CONFIG}.conf"
157157
if [ $IS_ENTERPRISE = "True" ]; then
158158
sudo su root -c "printf 'addons_path=${OE_HOME}/enterprise/addons,${OE_HOME_EXT}/addons\n' >> /etc/${OE_CONFIG}.conf"
159159
else

0 commit comments

Comments
 (0)