hi all!
This script is no long maintained, however i do have a friend who has made a far better solution to this problem!
please see https://github.com/totallynotinteresting/crossover for more info :)
if possible could you please star his repo too?
hi all!
This script is no long maintained, however i do have a friend who has made a far better solution to this problem!
please see https://github.com/totallynotinteresting/crossover for more info :)
if possible could you please star his repo too?
| #!/bin/bash | |
| # this forces Arena into full screen mode on startup, set back to 3 to reset | |
| # note that if you go into the Arena "Graphics" preference panel, it will reset all of these | |
| # and you will need to run these commands again | |
| defaults write com.wizards.mtga "Screenmanager Fullscreen mode" -integer 0 | |
| defaults write com.wizards.mtga "Screenmanager Resolution Use Native" -integer 0 | |
| # you can also replace the long complicated integer bit with any other scaled 16:9 | |
| # resolution your system supports. |
| # Split all objects and pass them to each filter below | |
| # Create/Delete Namespace | |
| (select(.verb == "create" and .objectRef.resource=="namespaces") | | |
| "[" + .stageTimestamp + "] " + "Namespace Created: name=" + .objectRef.name), | |
| (select(.verb == "delete" and .objectRef.resource=="namespaces") | | |
| "[" + .stageTimestamp + "] " + "Namespace Deleted: name=" + .objectRef.name), | |
| # Create/Delete Deployment |
Download the latest ugw3 package from https://github.com/Lochnair/vyatta-wireguard/releases and install it on your USG using dpkg -i wireguard-ugw3-<version>.deb.
cd /config/auth
umask 077
mkdir wireguard
cd wireguard
wg genkey > wg_private.key
wg pubkey < wg_private.key > wg_public.key| #!/usr/bin/env bash | |
| # Run `./gen-custom.sh github.com/myorg/myprovider provider-name version` | |
| # e.g.: `./gen-custom.sh github.com/mevansam/terraform-provider-cf cloudfoundry v1.0.0` | |
| # This will place a provider-name.json directly in $HOME/.terraform.d/schemas | |
| CUR="$(pwd)" | |
| out="$CUR/schemas" | |
| mkdir -p "$out" |
| # Example scrape config for pods | |
| # | |
| # The relabeling allows the actual pod scrape endpoint to be configured via the | |
| # following annotations: | |
| # | |
| # * `prometheus.io/scrape`: Only scrape pods that have a value of `true` | |
| # * `prometheus.io/path`: If the metrics path is not `/metrics` override this. This | |
| # will be the same for every container in the pod that is scraped. | |
| # * this will scrape every container in a pod with `prometheus.io/scrape` set to true and the | |
| port is name `metrics` in the container |
The device is shipped with test firmware installed. To burn a proper firmware, you will need:
The instructions on the blog page are incorrect because Rev G hardware uses ATxmega128A4U instead of ATxmega32A4U. Why? Probably an outdated version of hardware.
| # IrScrutinizer parametric export | |
| # | |
| # Creating tool: IrScrutinizer version 1.1.1 | |
| # Creating user: Erik | |
| # CreateDate: Tue Oct 07 22:37:43 CEST 2014 | |
| # | |
| # | |
| # Manufacturer: Motorola | |
| # Model: VIP1853 | |
| # Export from IrScrutinizer |
| #@ /etc/quagga/bgpd.conf (Centos & Ubuntu) | |
| hostname <Local OS hostname> | |
| password <Any random phrase> | |
| enable password <Any random phrase> | |
| ! | |
| log file /var/log/quagga/bgpd | |
| !debug bgp events | |
| !debug bgp zebra | |
| debug bgp updates |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| # GNU General Public License for more details. | |
| # |