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 python3 | |
| import sys | |
| from pathlib import Path | |
| from readelf import readelf | |
| from readelf.err import ParseError | |
| from readelf.const import ISA | |
| from importlib import metadata as importlib_metadata | |
| excepted_isa = ISA.ISA_X86 |
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
| <style> | |
| input.form-3s-switch { | |
| width: 2em; | |
| height: 1em; | |
| margin: 0.25em 0.25em 0 0; | |
| vertical-align: top; | |
| background-color: #fff; | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| background-size: contain; |
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 - | |
| #=============================================================================== | |
| # vim: softtabstop=4 shiftwidth=4 expandtab fenc=utf-8 spell spelllang=en cc=81 | |
| #=============================================================================== | |
| # | |
| # FILE: bootstrap-webvirtmgr.sh | |
| # | |
| # DESCRIPTION: Bootstrap webvirtmgr installation for various distributions | |
| # | |
| # BUGS: https://github.com/retspen/webvirtmgr-boostrap/issues |