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
| #! /usr/bin/env bash | |
| set -eu | |
| PHASE=prep | |
| DISTPATH=/data/kunden/deepthink/mellanox/work/tgzext | |
| _dirs="bin sbin dev etc/init.d lib proc sys tmp var/run var/lib" | |
| _links="\ |
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
| --- | |
| - hosts: localhost | |
| connection: local | |
| gather_facts: no | |
| vars: | |
| - k : vars['vars']['node']['properties']['DEMOPROPERTY'] | |
| tasks: |
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
| VM_HOOK = [ | |
| on = "DONE", | |
| name = "rudder-delete", | |
| remote = "NO", | |
| command = "rudder.sh", | |
| # arguments = "--vm-state CREATE --vm-template $TEMPLATE --service-to-notify metalb" ] | |
| arguments = "--vm-template $TEMPLATE" | |
| ] |
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
| # !/usr/bin/env bash | |
| set -u | |
| ssd_devs=(nvme0n1 sfdvn01) | |
| queue_depths=(1 16 224) | |
| fio_workers=(1 4 14) | |
| #./fio_psync_224qd_4t |
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
| ## this is ```/usr/local/etc/dhcpd.conf``` | |
| ## logging: send dhcp log messages to /var/log/dhcpd.log | |
| log-facility local7; |
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
| # Runs fiovisualizer in Docker over an HTML5 VNC connection | |
| # fixes sammcj/docker-fiovisualiser (partially) | |
| FROM dit4c/dit4c-container-x11 | |
| MAINTAINER github.com/florianheigl | |
| # Install | |
| # rm -f /usr/share/applications/x11vnc.desktop | |
| # Get noVNC |
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
| [global] | |
| ioengine=libaio | |
| size=512m | |
| filename=blah | |
| log_avg_msec=100 | |
| [randrw-4k] | |
| bs=4k | |
| iodepth=64 |
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
| https://github.com/ajeffco/saninfo/tree/master/scripts/brocade | |
| db backend | |
| webfrontend | |
| dokumentationstool | |
| fuer brocade + hds | |
| geht nicht ohne die DB teile |
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
| #!/bin/sh | |
| # Christian Pinedo <[email protected]> (https://github.com/chrpinedo/nagios-like-monitoring) | |
| # extending/cleanup Florian Heigl <[email protected]> | |
| # Configuration variables | |
| RANCID_DIR="/var/rancid" # Where rancid's data is located, for example, "/var/lib/rancid" | |
| RANCID_GROUPS="LAN SAN" # One or multiple groups of rancid to monitor, for example, "network" or "routers switches" or ... | |
| today=`date +%Y%m%d` |
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
| #!/bin/bash | |
| CONF=/etc/yum/pluginconf.d/security.conf | |
| # no update if system is not set up to check those | |
| test -r $CONF || exit 0 | |
| grep -q "enabled=1" $CONF || exit 0 | |
| # init | |
| statustxt="No vulnerabilities detected" | |
| status=0 |