Checkout the following tools https://wiki.debian.org/CrossToolchains
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at | |
# https://docs.vagrantup.com. | |
config.vm.box = "trusty64" | |
# vagrant issues #1673..fixes hang with configure_networks | |
config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at | |
# https://docs.vagrantup.com. | |
# Every Vagrant development environment requires a box. You can search for | |
# boxes at https://atlas.hashicorp.com/search. | |
config.vm.box = "trusty64_2" | |
# vagrant issues #1673..fixes hang with configure_networks | |
config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pylint: disable=c0111 | |
from netshowlib import get_version | |
import os | |
import sys | |
try: | |
from setuptools import setup, find_packages | |
except ImportError: | |
import ez_setup | |
ez_setup.use_setuptools() | |
from setuptools import setup, find_packages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ansible constants are set when module is imported | |
# set host key checking before ansible imports | |
import os | |
os.environ['ANSIBLE_HOST_KEY_CHECKING'] = 'false' | |
from ansible import utils | |
from ansible import callbacks | |
from ansible import inventory | |
import ansible.runner | |
import ansible.playbook | |
from ansible.callbacks import display |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires underscore.js | |
_und = require 'underscore' | |
a = [1,2,3,4] | |
b = [4,3,2,1] | |
_und.difference(a,b) == [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ dpkg-buildpackage -us -uc -b | |
dpkg-buildpackage: source package sflowtool | |
dpkg-buildpackage: source version 3.34 | |
dpkg-buildpackage: source distribution unstable | |
dpkg-buildpackage: source changed by Stanley Kamithi <[email protected]> | |
dpkg-buildpackage: host architecture amd64 | |
dpkg-source --before-build sflowtool-3.34 | |
fakeroot debian/rules clean | |
dh clean --with autotools-dev | |
dh_testdir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEWS | |
README.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sflowtool (3.34) unstable; urgency=low | |
* Initial Source package build | |
-- Stanley Kamithi <[email protected]> Thu, 19 Feb 2015 22:10:18 -0500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Source: sflowtool | |
Section: admin | |
Priority: optional | |
Maintainer: The Sflow community | |
Build-Depends: debhelper (>= 8.0.0), autotools-dev | |
Standards-Version: 3.9.4 | |
Homepage: http://inmon.com | |
Package: sflowtool | |
Architecture: any |