Skip to content

Commit 3ec3400

Browse files
committed
archlinux: Rename to arch
The os-release(5) ID on Arch Linux is 'arch', not 'archlinux'. The convention of naming the Toolbx images according to the os-release(5) ID is deeply ingrained in the Toolbx code base. It will be better to keep things simple by continuing that practice, instead of adding a one-off exception. Especially, now that built-in support for Arch Linux will be added to Toolbx. toolbx-images#82
1 parent 46c26aa commit 3ec3400

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/archlinux-pr.yaml .github/workflows/arch-pr.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
branches:
88
- main
99
paths:
10-
- archlinux/**
11-
- .github/workflows/archlinux-pr.yaml
10+
- arch/**
11+
- .github/workflows/arch-pr.yaml
1212

1313
env:
14-
distro: 'archlinux'
14+
distro: 'arch'
1515
distro_pretty: 'Arch Linux'
1616
jobs:
1717
build-and-push-images:

.github/workflows/archlinux.yaml .github/workflows/arch.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ on:
77
branches:
88
- main
99
paths:
10-
- archlinux/**
11-
- .github/workflows/archlinux.yaml
10+
- arch/**
11+
- .github/workflows/arch.yaml
1212
schedule:
1313
- cron: '0 0 * * MON'
1414

1515
# Prevent multiple workflow runs from racing
1616
concurrency: ${{ github.workflow }}
1717

1818
env:
19-
distro: 'archlinux'
19+
distro: 'arch'
2020
distro_pretty: 'Arch Linux'
2121
jobs:
2222
build-and-push-images:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ directly use the commands below:
4949

5050
- [Arch Linux]:
5151
```
52-
$ toolbox create --image quay.io/toolbx-images/archlinux-toolbox:latest
53-
$ toolbox enter archlinux-toolbox-latest
52+
$ toolbox create --image quay.io/toolbx-images/arch-toolbox:latest
53+
$ toolbox enter arch-toolbox-latest
5454
```
5555

5656
- [CentOS (Stream)] with [EPEL] enabled by default:

archlinux/Containerfile arch/Containerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM docker.io/library/archlinux:base-devel
22

33
LABEL com.github.containers.toolbox="true" \
4-
name="archlinux-toolbox" \
4+
name="arch-toolbox" \
55
version="base-devel" \
66
usage="This image is meant to be used with the toolbox command" \
77
summary="Base image for creating Arch Linux toolbox containers" \
File renamed without changes.

0 commit comments

Comments
 (0)