Fix all hardcoded ubuntu-ublue paths to particle-os in config and scriptlets

This commit is contained in:
robojerk 2025-07-14 09:50:35 -07:00
parent 5f59b3510a
commit 14d7da71e8
7 changed files with 34 additions and 23 deletions

View file

@ -184,8 +184,8 @@ SYSTEM MANAGEMENT:
# Reset Particle-OS system
EXAMPLES:
apt-layer ubuntu-ublue/base/24.04 ubuntu-ublue/gaming/24.04 steam wine
apt-layer --container ubuntu-ublue/base/24.04 ubuntu-ublue/dev/24.04 vscode git
apt-layer particle-os/base/24.04 particle-os/gaming/24.04 steam wine
apt-layer --container particle-os/base/24.04 particle-os/dev/24.04 vscode git
apt-layer --dpkg-install curl wget
apt-layer --live-install firefox
apt-layer install steam wine
@ -221,8 +221,8 @@ BASIC LAYER CREATION:
# Update packages with rollback capability and backup creation
Examples:
apt-layer ubuntu-ublue/base/24.04 ubuntu-ublue/gaming/24.04 steam wine
apt-layer --container ubuntu-ublue/base/24.04 ubuntu-ublue/dev/24.04 vscode git
apt-layer particle-os/base/24.04 particle-os/gaming/24.04 steam wine
apt-layer --container particle-os/base/24.04 particle-os/dev/24.04 vscode git
apt-layer --dpkg-install curl wget
apt-layer --advanced-install firefox
EOF
@ -350,7 +350,7 @@ OCI INTEGRATION:
EXAMPLES:
apt-layer --list
apt-layer --info ubuntu-ublue/base/24.04
apt-layer --info particle-os/base/24.04
apt-layer --remove old-layer
apt-layer --oci-export my-image oci:my-registry/my-image:latest
EOF
@ -558,10 +558,10 @@ CLOUD SECURITY:
Examples:
apt-layer cloud aws init
apt-layer cloud deploy ubuntu-ublue/gaming/24.04 aws ecr
apt-layer cloud deploy particle-os/gaming/24.04 aws ecr
apt-layer kubernetes eks create-cluster my-cluster us-west-2
apt-layer orchestration gitops init https://github.com/my-org/gitops-repo
apt-layer cloud-security scan ubuntu-ublue/gaming/24.04 aws comprehensive
apt-layer cloud-security scan particle-os/gaming/24.04 aws comprehensive
EOF
}
@ -572,10 +572,10 @@ Particle-OS apt-layer Tool - Examples
BASIC LAYER CREATION:
# Create gaming layer from base Ubuntu image
apt-layer ubuntu-ublue/base/24.04 ubuntu-ublue/gaming/24.04 steam wine
apt-layer particle-os/base/24.04 particle-os/gaming/24.04 steam wine
# Create development layer with container isolation
apt-layer --container ubuntu-ublue/base/24.04 ubuntu-ublue/dev/24.04 vscode git
apt-layer --container particle-os/base/24.04 particle-os/dev/24.04 vscode git
# Direct dpkg installation (faster)
apt-layer --dpkg-install curl wget
@ -611,10 +611,10 @@ IMAGE MANAGEMENT:
apt-layer --list
# Show image details
apt-layer --info ubuntu-ublue/gaming/24.04
apt-layer --info particle-os/gaming/24.04
# Export as OCI image
apt-layer --oci-export ubuntu-ublue/gaming/24.04 ubuntu-ublue/gaming:latest
apt-layer --oci-export particle-os/gaming/24.04 particle-os/gaming:latest
EOF
}