Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1from ipaplatform.fedora.paths import FedoraPathNamespace 2 3class NixOSPathNamespace(FedoraPathNamespace): 4 SBIN_IPA_JOIN = "@out@/bin/ipa-join" 5 IPA_GETCERT = "@out@/bin/ipa-getcert" 6 IPA_RMKEYTAB = "@out@/bin/ipa-rmkeytab" 7 IPA_GETKEYTAB = "@out@/bin/ipa-getkeytab" 8 NSUPDATE = "@bind@/bin/nsupdate" 9 BIN_CURL = "@curl@/bin/curl" 10 KINIT = "@kerberos@/bin/kinit" 11 KDESTROY = "@kerberos@/bin/kdestroy" 12 13paths = NixOSPathNamespace()