]> git.ipfire.org Git - thirdparty/suricata-update.git/commitdiff
index update: use oisf index, not jasonish
authorJason Ish <ish@unx.ca>
Wed, 24 Apr 2019 05:03:07 +0000 (23:03 -0600)
committerJason Ish <ish@unx.ca>
Wed, 24 Apr 2019 05:03:07 +0000 (23:03 -0600)
suricata/update/data/update.py

index f4edb11708fab7fc0f4b26e0c47862c5f522e3e6..85a796530853461813e3c125a82f2b4666ec3467 100644 (file)
@@ -27,7 +27,7 @@ def embed_index():
     """Embed a copy of the index as a Python source file. We can't use a
     datafile yet as there is no easy way to do with distutils."""
     dist_filename = os.path.join(os.path.dirname(__file__), "index.py")
-    url = "https://raw.githubusercontent.com/jasonish/suricata-intel-index/master/index.yaml"
+    url = "https://raw.githubusercontent.com/oisf/suricata-intel-index/master/index.yaml"
     response = urlopen(url)
     index = yaml.safe_load(response.read())
     with open(dist_filename, "w") as fileobj: