File: broctld.in

package info (click to toggle)
broctl 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 2,220 kB
  • sloc: python: 4,931; sh: 1,188; makefile: 70; awk: 24
file content (13 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

BroBase = "@PREFIX@"

import os
import sys

sys.path = [os.path.join(BroBase, "lib/broctl")] + sys.path

from BroControl import broctld

if __name__ == "__main__":
    broctld.main(BroBase)