diff options
author | Martin Konrad <konrad@frib.msu.edu> | 2014-09-28 23:17:53 -0400 |
---|---|---|
committer | Martin Konrad <konrad@frib.msu.edu> | 2014-09-29 00:21:20 -0400 |
commit | b57960aeec1a454418f204c61cc36a7b94089442 (patch) | |
tree | 44e8f59d7a34eb1589ed0397f48b0a9938e9281d /apps/user_ldap/appinfo/register_command.php | |
parent | 84923475c076d8b30d271d2a14862a42d279af27 (diff) | |
download | nextcloud-server-b57960aeec1a454418f204c61cc36a7b94089442.tar.gz nextcloud-server-b57960aeec1a454418f204c61cc36a7b94089442.zip |
Add a CLI command that creates an empty LDAP config
This is needed to configure the user_ldap app without using the
wizard (e.g. using tools like Puppet).
Diffstat (limited to 'apps/user_ldap/appinfo/register_command.php')
-rw-r--r-- | apps/user_ldap/appinfo/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/user_ldap/appinfo/register_command.php b/apps/user_ldap/appinfo/register_command.php index 10d992531c4..639597fdb83 100644 --- a/apps/user_ldap/appinfo/register_command.php +++ b/apps/user_ldap/appinfo/register_command.php @@ -9,3 +9,4 @@ $application->add(new OCA\user_ldap\Command\ShowConfig()); $application->add(new OCA\user_ldap\Command\SetConfig()); $application->add(new OCA\user_ldap\Command\TestConfig()); +$application->add(new OCA\user_ldap\Command\CreateEmptyConfig()); |