Ignore:
Timestamp:
08/03/18 13:17:46 (7 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
master, perl-5.22
Children:
a384a97
Parents:
981dbbc (diff), 1163be4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'gcc484'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • npl/commonservers/mysql_conf/root/service/mysql/run

    r981dbbc rce9f9b3  
    1919fi
    2020
    21 sed "s/^innodb_buffer_pool_size.*/innodb_buffer_pool_size = "$MEM_POOL"K/g" -i /etc/my.cnf
     21#make the config update atomic. (it happend more then once that during a crash/reset the config file ended up zero bytes )
     22cat /etc/my.cnf | sed "s/^innodb_buffer_pool_size.*/innodb_buffer_pool_size = "$MEM_POOL"K/g" > /etc/my.cnf.tmp
     23sync
     24mv /etc/my.cnf.tmp /etc/my.cnf
    2225
    2326cd /
Note: See TracChangeset for help on using the changeset viewer.