Jathan McCollum
Jathan McCollum
Since we have the full object stored in the changes table. Do we want to add the ability to easily "rollback" a change?
This: ``` bash $ nsot-server start Performing upgrade before service startup... Performing collectstatic before service startup... Traceback (most recent call last): File "/tmp/nsot/envs/nsot/bin/nsot-server", line 8, in load_entry_point('nsot==0.8.5', 'console_scripts', 'nsot-server')() File...
This is the almost-complete Juniper SRX firewall policy parsing feature branch that was worked on during the summer of 2014. A little bit of love and this can be ready...
Let's prefix environment variables for applications with the application name. So, for example, I set `TRIGGER_REDIS_HOST` to modify the Redis server's IP for Trigger.
One of my team mates just pointed out to me that when he does `^X` on a Juniper device (to clear the command line of all characters), it disconnects the...
If we could define a way for devices to have specified realms by some sort of pattern. Perhaps either by way of a `NetDevice.realm` attribute, or by some configurable callable...
There are currently no unit tests for interacting with hardware. Since this is one of the core features of Trigger's revolving around remote execution and processing, we need these so...
Currently when implementing support for a new vendor, changes need to occur in several places. See: http://trigger.readthedocs.org/en/latest/new_vendors.html At the very least one needs to touch: ``` conf/trigger_settings.py trigger/conf/global_settings.py trigger/netdevices/__init__.py ```...
Currently Trigger's logs are either all or nothing. This is not fun for debugging. Or, rather it may be fun for debugging, but not day-to-day operational logging. Reference: https://twistedmatrix.com/documents/12.0.0/core/howto/logging.html#auto3