]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/mkpubsuffixcc
rec: ensure correct service user on debian
[thirdparty/pdns.git] / pdns / mkpubsuffixcc
CommitLineData
92011b8f 1#!/bin/sh
2
3(echo "const char* g_pubsuffix[]={";
aae570cf 4 for a in $(grep -v "//" effective_tld_names.dat | grep \\. | egrep "^[.0-9a-z-]*$")
92011b8f 5 do
6 echo \"$a\",
7 done
aae570cf 8echo "0};") > pubsuffix.cc