Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
#!/usr/bin/python | |
from ansible.module_utils.basic import AnsibleModule | |
import requests | |
import time | |
# Place this file under /library/cisco_cve_checker.py | |
# Ansible task to fetch Cisco CVE items for specific version | |
# |
version: '3.8' | |
services: | |
nautobot: | |
# image: networktocode/nautobot:stable | |
# image: bsmeding/nautobot:2.1.9-py3.11 | |
container_name: nautobot | |
image: &shared_image bsmeding/nautobot:2.4 | |
depends_on: |
# Fail2Ban configuration file for guacamole | |
# | |
# Author: Steven Hiscocks | |
# Changed by: Bart Smeding - adding new logging option when guacamole runs in a docker and fail2ban on the host. | |
# Set logging to `docker_container` | |
# | |
# Example of jail.d\guacamole.conf: | |
# [guacamole] | |
# | |
# enabled = true |
<?php | |
/* | |
* Display LibreNMS interface graphs in Netbox | |
* | |
* 1. Upload this file into the plugin folder of LibreNMS. | |
* 2. Generate an API key in LibreNMS and insert the connection details below. | |
* 3. Create graphs in Netbox using the following URL scheme. | |
* https://nms.level66.network/plugins/netbox-graph.php?device={{ obj.device.name }}&interface={{ obj.name }}&duration=8h | |
* 4. Save time in your daily work! | |
* |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of