14 lines
260 B
Go
14 lines
260 B
Go
|
|
// lldap-export exports the LLDAP directory as a canonical YAML snapshot
|
||
|
|
// for use with the validator and migration tools.
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
fmt.Fprintln(os.Stderr, "lldap-export: not yet implemented (T06+)")
|
||
|
|
os.Exit(1)
|
||
|
|
}
|