14 lines
266 B
Go
14 lines
266 B
Go
|
|
// lldap-to-ldap migrates LLDAP directory data to standard LDAP (LDIF format).
|
||
|
|
// Part of the NetKingdom IAM migration contract.
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
fmt.Fprintln(os.Stderr, "lldap-to-ldap: not yet implemented (T06+)")
|
||
|
|
os.Exit(1)
|
||
|
|
}
|