├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── dhcpig.install ├── docs ├── rules └── source │ └── format └── pig.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreni-packages/dhcpig/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreni-packages/dhcpig/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreni-packages/dhcpig/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreni-packages/dhcpig/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dhcpig.install: -------------------------------------------------------------------------------- 1 | pig.py usr/bin/ 2 | 3 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreni-packages/dhcpig/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreni-packages/dhcpig/HEAD/pig.py --------------------------------------------------------------------------------