mirror of
https://github.com/YunoHost-Apps/jeedom_ynh.git
synced 2024-09-03 19:26:26 +02:00
- Use the new example_ynh - Dedicated Jeedom user instead of www-data (better for sudo if needed) - No more ZWave dependencies for now
12 lines
507 B
SQL
12 lines
507 B
SQL
INSERT INTO config (`plugin`, `key`, `value`) VALUES
|
|
('core', 'ldap:basedn', 'ou=users,dc=yunohost,dc=org'),
|
|
('core', 'ldap:domain', 'dc=yunohost,dc=org'),
|
|
('core', 'ldap:enable', '1'),
|
|
('core', 'ldap:filter', 'objectClass=mailAccount'),
|
|
('core', 'ldap:host', 'localhost'),
|
|
('core', 'ldap:port', '389'),
|
|
('core', 'sso:allowRemoteUser', '1');
|
|
|
|
INSERT INTO user (id, login, password, options, hash, rights) VALUES ('0', '__ADMIN__', '', NULL, NULL, '{\"admin\":1}');
|
|
|
|
DELETE FROM user WHERE login = 'admin';
|