F28 's thrird party repositories now come with a Steam repo : https://fedoraproject.org/wiki/Workstation/Third_Party_Software_Repositories
dnf install -y fedora-workstation-repositories dnf install -y steam --enablerepo=rpmfusion-nonfree-steam
| import os | |
| import shutil | |
| import logging | |
| import sys | |
| from concurrent.futures import ThreadPoolExecutor | |
| import threading | |
| import uuid | |
| import xattr | |
| from pathlib import Path |
| #!/usr/bin/env python | |
| import json | |
| import sys | |
| def main(): | |
| for tag in json.loads(sys.stdin.read())['RepoTags']: | |
| # Do your commands here | |
| print(tag) |
F28 's thrird party repositories now come with a Steam repo : https://fedoraproject.org/wiki/Workstation/Third_Party_Software_Repositories
dnf install -y fedora-workstation-repositories dnf install -y steam --enablerepo=rpmfusion-nonfree-steam
| #!/bin/bash | |
| ## **Updates to this file are now at https://github.com/giovtorres/kvm-install-vm.** | |
| ## **This updated version has more options and less hardcoded variables.** | |
| # Take one argument from the commandline: VM name | |
| if ! [ $# -eq 1 ]; then | |
| echo "Usage: $0 <node-name>" | |
| exit 1 | |
| fi |
| #!/bin/bash | |
| # Hosted Zone ID e.g. BJBK35SKMM9OE | |
| ZONEID="enter zone id here" | |
| # The CNAME you want to update e.g. hello.example.com | |
| RECORDSET="enter cname here" | |
| # More advanced options below | |
| # The Time-To-Live of this recordset |