mirror of https://github.com/sipwise/db-schema.git
This user/password combination is not used any longer by the monitoring system and it is a security risk as it is using a hardcoded password instead of the one from constants.yml. Change-Id: If00789343e57c5e1e058e431d3dcfc59a6e3fd58mr9.0.1
parent
27dd266d23
commit
7e3e37ee66
@ -0,0 +1,14 @@
|
||||
USE provisioning;
|
||||
|
||||
INSERT
|
||||
INTO voip_subscribers
|
||||
(username, domain_id, uuid, password, create_timestamp, modify_timestamp)
|
||||
SELECT
|
||||
'nagios',
|
||||
id,
|
||||
'ac1697cf-6933-45ef-9abf-b1278054ded0',
|
||||
'nagios4Sipwise!',
|
||||
'0',
|
||||
'1970-01-01 00:00:00'
|
||||
FROM voip_domains
|
||||
WHERE domain = 'voip.sipwise.local';
|
@ -0,0 +1,3 @@
|
||||
USE provisioning;
|
||||
|
||||
DELETE FROM voip_subscribers WHERE username = 'nagios';
|
Loading…
Reference in new issue