Remove PRAGMA commands on databases

This commit is contained in:
Keith Whyte 2022-07-10 04:06:52 +02:00
parent c584d22137
commit 58b73ef6b8

View file

@ -68,7 +68,6 @@ class rhizo_base::osmocom {
package { [ 'osmo-msc' ]: package { [ 'osmo-msc' ]:
ensure => 'installed', ensure => 'installed',
require => Class['rhizo_base::apt'], require => Class['rhizo_base::apt'],
notify => Exec['sms_pragma_wal']
} }
package { [ 'libsmpp1', 'libosmo-sigtran7' ]: package { [ 'libsmpp1', 'libosmo-sigtran7' ]:
@ -78,7 +77,6 @@ class rhizo_base::osmocom {
package { [ 'osmo-hlr' ]: package { [ 'osmo-hlr' ]:
ensure => 'installed', ensure => 'installed',
require => Class['rhizo_base::apt'], require => Class['rhizo_base::apt'],
notify => Exec['hlr_pragma_wal']
} }
$sipcon_version = $repo ? { $sipcon_version = $repo ? {
@ -219,20 +217,6 @@ class rhizo_base::osmocom {
ensure => 'stopped' ensure => 'stopped'
} }
exec { 'hlr_pragma_wal':
command =>
'/usr/bin/sqlite3 /var/lib/osmocom/hlr.db "PRAGMA journal_mode=wal;"',
require => Class['rhizo_base::packages'],
refreshonly => true,
}
exec { 'sms_pragma_wal':
command =>
'/usr/bin/sqlite3 /var/lib/osmocom/sms.db "PRAGMA journal_mode=wal;"',
require => Class['rhizo_base::packages'],
refreshonly => true,
}
exec { 'notify-osmo-restart': exec { 'notify-osmo-restart':
command => '/bin/echo 1 > /tmp/OSMO-dirty', command => '/bin/echo 1 > /tmp/OSMO-dirty',
refreshonly => true, refreshonly => true,