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 python2.7 | |
''' | |
Add support of vlan propagation protocols to oVirt node. | |
One can specify custom key 'vlan_propagation' in host network setup | |
to one or [\s,] separated sequence of supported protocols. | |
Currently only 'legasy' switch type is supported with 'gvrp' and 'mvrp' protocols. | |
Also, one can use special keyword 'all' to enable all suported protocols. | |
All unspecified protocols will be disabled. | |
All unsuported protocols/switches will drop warnings to stderr | |
(collected by vdsm in '/var/log/vdsm/supervdsm.log'). |
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
[Unit] | |
# Usage: systemctl enable --now duperemove-weekly@$(systemd-escape <path>).timer | |
# Utilize %J specifier for duration set. | |
# One can hardlink/copy with 'weekly' part changed | |
# to set other duration. | |
Description=Deduplicate %I at calendar event (%J) | |
After=local-fs.target | |
Requires=local-fs.target | |
Conflicts=shutdown.target rescue.target rescue.service emergency.service |
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 | |
# Gather and print to stdout ESET servers | |
# from `*.txt' at https://support.eset.com/kb332/ | |
# Output of this script intent to use with `dstdomain` directive of squid proxy | |
#Grab all `.txt' links. | |
#sed jobs: | |
# - exclude all but value of `href' attr | |
# - remove non-`.txt' links |