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 | |
# --- Configuration Variables --- | |
REPO_URL="http://download.opensuse.org/repositories/home:/alvistack/xUbuntu_24.04/" | |
REPO_NAME="home_alvistack" # A short, unique name for the repository | |
PACKAGE_NAME="podman" | |
PIN_PRIORITY=900 # A priority higher than default (500) and ESM (510) to prefer this repo | |
# --- Script Logic --- |