├── .gitignore ├── COPYING ├── ChangeLog ├── Makefile.am ├── README.mdown ├── configure.ac ├── debian ├── changelog ├── control ├── copyright ├── ldap-git-backup.cron.d ├── ldap-git-backup.examples ├── rules ├── source │ └── format ├── upstream │ └── metadata └── watch ├── examples └── migrate-ldif ├── ldap-git-backup.in ├── redhat └── ldap-git-backup.spec ├── safe-ldif.in └── t ├── 001_help-option.t.in ├── 010_read_ldif.t.in ├── 020_entry-name.t.in ├── 030_git-from-scratch.t.in ├── 031_backup-to-existing-dir.t.in ├── 040_delete-entry.t.in ├── 050_modify-entry.t.in ├── 060_custom_commit.t.in ├── 061_no_change.t.in ├── 070_mock-slapcat.t.in ├── 071_safe-ldif.t.in ├── mock-slapcat.in ├── test-helper.pm.in └── testdata ├── data0.ldif ├── data1.ldif ├── data_A1.ldif ├── data_A2.ldif ├── data_B1.ldif ├── data_B2.ldif ├── data_C1.ldif ├── data_C2.ldif ├── data_C3.ldif ├── entry_group.ldif ├── entry_people.ldif ├── entry_people_base64.ldif ├── entry_people_base64_multiline.ldif ├── entry_people_space.ldif └── entry_people_upcase.ldif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/README.mdown -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/ldap-git-backup.cron.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/ldap-git-backup.cron.d -------------------------------------------------------------------------------- /debian/ldap-git-backup.examples: -------------------------------------------------------------------------------- 1 | examples/migrate-ldif 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/debian/watch -------------------------------------------------------------------------------- /examples/migrate-ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/examples/migrate-ldif -------------------------------------------------------------------------------- /ldap-git-backup.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/ldap-git-backup.in -------------------------------------------------------------------------------- /redhat/ldap-git-backup.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/redhat/ldap-git-backup.spec -------------------------------------------------------------------------------- /safe-ldif.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/safe-ldif.in -------------------------------------------------------------------------------- /t/001_help-option.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/001_help-option.t.in -------------------------------------------------------------------------------- /t/010_read_ldif.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/010_read_ldif.t.in -------------------------------------------------------------------------------- /t/020_entry-name.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/020_entry-name.t.in -------------------------------------------------------------------------------- /t/030_git-from-scratch.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/030_git-from-scratch.t.in -------------------------------------------------------------------------------- /t/031_backup-to-existing-dir.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/031_backup-to-existing-dir.t.in -------------------------------------------------------------------------------- /t/040_delete-entry.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/040_delete-entry.t.in -------------------------------------------------------------------------------- /t/050_modify-entry.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/050_modify-entry.t.in -------------------------------------------------------------------------------- /t/060_custom_commit.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/060_custom_commit.t.in -------------------------------------------------------------------------------- /t/061_no_change.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/061_no_change.t.in -------------------------------------------------------------------------------- /t/070_mock-slapcat.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/070_mock-slapcat.t.in -------------------------------------------------------------------------------- /t/071_safe-ldif.t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/071_safe-ldif.t.in -------------------------------------------------------------------------------- /t/mock-slapcat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/mock-slapcat.in -------------------------------------------------------------------------------- /t/test-helper.pm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/test-helper.pm.in -------------------------------------------------------------------------------- /t/testdata/data0.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data0.ldif -------------------------------------------------------------------------------- /t/testdata/data1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data1.ldif -------------------------------------------------------------------------------- /t/testdata/data_A1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_A1.ldif -------------------------------------------------------------------------------- /t/testdata/data_A2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_A2.ldif -------------------------------------------------------------------------------- /t/testdata/data_B1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_B1.ldif -------------------------------------------------------------------------------- /t/testdata/data_B2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_B2.ldif -------------------------------------------------------------------------------- /t/testdata/data_C1.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_C1.ldif -------------------------------------------------------------------------------- /t/testdata/data_C2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_C2.ldif -------------------------------------------------------------------------------- /t/testdata/data_C3.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/data_C3.ldif -------------------------------------------------------------------------------- /t/testdata/entry_group.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/entry_group.ldif -------------------------------------------------------------------------------- /t/testdata/entry_people.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/entry_people.ldif -------------------------------------------------------------------------------- /t/testdata/entry_people_base64.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/entry_people_base64.ldif -------------------------------------------------------------------------------- /t/testdata/entry_people_base64_multiline.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/entry_people_base64_multiline.ldif -------------------------------------------------------------------------------- /t/testdata/entry_people_space.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/entry_people_space.ldif -------------------------------------------------------------------------------- /t/testdata/entry_people_upcase.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmar/ldap-git-backup/HEAD/t/testdata/entry_people_upcase.ldif --------------------------------------------------------------------------------