Update Ubuntu 2026-03-01#20937
Conversation
|
/cc @woky @cjdcordeiro |
This comment has been minimized.
This comment has been minimized.
|
That diff has a few concerning aspects 😅 The biggest one is how long that Related to that, is it intentional that there are two layers with contents? Especially when the second layer appears to be mostly just noise / possibly unintentional data? diff --git a/ubuntu_devel/blobs/sha256/d66c289b4377f548afe7cb6e428cb42875eec127df29126e30eeac5851d14c1b 'tar -t' b/ubuntu_devel/blobs/sha256/d66c289b4377f548afe7cb6e428cb42875eec127df29126e30eeac5851d14c1b 'tar -t'
new file mode 100644
index 0000000..4d95234
--- /dev/null
+++ b/ubuntu_devel/blobs/sha256/d66c289b4377f548afe7cb6e428cb42875eec127df29126e30eeac5851d14c1b 'tar -t'
@@ -0,0 +1,2 @@
+.rock/
+.rock/metadata.yaml+ "org.opencontainers.image.base.digest": "c517927520f31599c44abe212f081495cd4c7fb39c99b397f5fac4bcb1593123",What is this the digest of? Also, I would suggest packing all these config labels into OCI annotations instead -- labels get auto-inherited by any image that's Reading further, I see that they're packed into annotations also, but in that case I would suggest dropping most if not all from labels, because labels really are nasty (especially on a base image). + "org.opencontainers.image.ref.name": "ubuntu",
+ "org.opencontainers.image.title": "ubuntu",I'm not sure how I missed this before, but the It's also probably not super meaningful to set +usr/bin/pebbleJust to be sure, is it intentional that this is now included by default, even for users who don't want/need it? (it's fine either way, but I want to double check that it was intentional and not a leaking implementation detail or similar) There are a lot of new files added under |
|
hi @tianon . you're right to have caught significant changes with 26.04. Ubuntu 26.04 is now being built with rockcraft, and thus all changes you mentioned are expected, and I'm happy to take some into consideration for improvement (looping @zhijie-yang Let me address all the points above:
fwiw, I still expect this 26.04 to undergo some minor changes over the next 2 months, until the official release. (fyi @tigarmo) |
|
Hey @tianon and @cjdcordeiro , The contents inside We will investigate the feasibility of excluding these files. The respective changes will be reflected in the future commits of this image. |
For the For the These all end up showing up for end-users in the output of Cleaning this up is not a hard block, but I'd probably call it a "soft block" -- this state is not good, and I highly recommend cleaning it up, but if you really feel strongly about going forward, I will capitulate.
Looking at the contents of the YAML file added in the second layer, I'm confused -- they appear to be almost entirely overlapping from the annotations. What purpose does this file serve? architecture: amd64
base: bare
base-digest: 67f85c382ac7d4635cbc4dba5325880e55f03cbf4ca3e8d4f1ca5d43cf1ab31d
created: '2026-03-04T05:49:10.422352+00:00'
name: ubuntu
summary: The Ubuntu container image maintained by Canonical
title: ubuntu
version: '26.04'This isn't a blocker, but it's definitely a "code smell" and I'd like to understand better what purpose it serves and especially why it couldn't be packed into the prior layer/tar directly instead (if you really want to keep it). This is also a user-facing detail because it leads to more round-trips to/from the registry, and in this case, for a layer that's otherwise really small, so it's almost entirely overhead that slows down pulls of the image unnecessarily. Regarding the annotations (https://github.com/opencontainers/image-spec/blob/v1.1.1/annotations.md#pre-defined-annotation-keys):
The other annotations seem fine ("title" is redundant, but harmless).
Including so many labels, especially that are then inherited by any image that is "Labels": {
"org.opencontainers.image.base.digest": "c517927520f31599c44abe212f081495cd4c7fb39c99b397f5fac4bcb1593123",
"org.opencontainers.image.created": "2026-02-27T08:45:31.935278+00:00",
"org.opencontainers.image.description": "The Ubuntu container image maintained by Canonical\n\nUbuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things.\nIt is the world's most popular operating system across public clouds and OpenStack clouds.\nIt is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale.\nFast, secure and simple, Ubuntu powers millions of PCs worldwide.\n",
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.title": "ubuntu",
"org.opencontainers.image.version": "26.04"
}(If they were |
|
Sorry, to tie off the other two points with explicit "block/no block" status, |
This commit removes the field ref.name from the image annotation to remove the blockers as concerned by docker-library/official-images#20937 Rationale behind this: The annotation key `org.opencontainers.image.ref.name` should only be considered as valid if it's used in an image manifest index (i.e., the index.json) according to the OCI spec. As a result, our adding the key `org.opencontainers.image.ref.name` to the image's manifest (instead of the manifest index) is considered invalid, and this behavior should be deprecated. Contrarily, in the code, we are using this annotation key added implicitly by umoci in the _inject_oci_fields function to distinguish the base image and the target image (see comments), which is deemed to be a valid use case, since this key is scoped inside the index.json file.
* fix: remove ref.name from annotation (#1129) This commit removes the field ref.name from the image annotation to remove the blockers as concerned by docker-library/official-images#20937 Rationale behind this: The annotation key `org.opencontainers.image.ref.name` should only be considered as valid if it's used in an image manifest index (i.e., the index.json) according to the OCI spec. As a result, our adding the key `org.opencontainers.image.ref.name` to the image's manifest (instead of the manifest index) is considered invalid, and this behavior should be deprecated. Contrarily, in the code, we are using this annotation key added implicitly by umoci in the _inject_oci_fields function to distinguish the base image and the target image (see comments), which is deemed to be a valid use case, since this key is scoped inside the index.json file. * fix: remove base.digest for bare-based rocks The key org.opencontainers.image.base.digest will no longer be added to the annotations of a bare-based rock, as bare-based rocks don't have a valid "base" image. The key base-digest will no longer be added to the rock's metadata for bare-based rocks due to the same reason. * docs: release notes for 1.17.2 (#1132) --------- Co-authored-by: zhijie-yang <zhijie.yang@canonical.com>
|
Hi @tianon, here's a follow-up umociYes, we're taking a similar course of action and the history entries will have proper "created by" and "comments" in the next revision. This also applies to the YAML file added in the second layer
So here I'd like to break down your comments into 2 separate questions:
TLDR: This is basically an expansion of existing internal metadata, such as The "separation of concerns" between OCI metadata and internal metadata is still something we want to preserve.
I think it can actually. It may be a tooling improvement we can look into. I agree with the round-trip inefficiency. @zhijie-yang @tigarmo can we add this to our watchlist pls?
|
Update Ubuntu to the latest published OCI tarballs as of 2026-03-15.
Diff for 587d682:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 893c6fe..a4fe67b 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -4,37 +4,37 @@ GitCommit: fa42be9027eccb928a1f0f43d95ffd9a45d36737
File: index.json
Builder: oci-import
-Tags: 22.04, jammy-20260210.1, jammy
+Tags: 22.04, jammy-20260217, jammy
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
Directory: oci
-amd64-GitCommit: 3c7694ee72385dbbf896c67b32a634705ce91c66
-amd64-GitFetch: refs/tags/dist-jammy-amd64-20260210.1-3c7694ee
-arm32v7-GitCommit: 94af6579d7e179f7c773963c0ffa5ea1f4a068e1
-arm32v7-GitFetch: refs/tags/dist-jammy-arm32v7-20260210.1-94af6579
-arm64v8-GitCommit: d9986f0f6c3b7d798b383baee2a656c51b841ab9
-arm64v8-GitFetch: refs/tags/dist-jammy-arm64v8-20260210.1-d9986f0f
-ppc64le-GitCommit: f13e957becc089e0a049986c50d735a147afe10a
-ppc64le-GitFetch: refs/tags/dist-jammy-ppc64le-20260210.1-f13e957b
-riscv64-GitCommit: 00bea7d1244a7b526d7fbbf24ea167a4e7e5378d
-riscv64-GitFetch: refs/tags/dist-jammy-riscv64-20260210.1-00bea7d1
-s390x-GitCommit: e338b83de84be238d7a45847e9461e42f08bec36
-s390x-GitFetch: refs/tags/dist-jammy-s390x-20260210.1-e338b83d
+amd64-GitCommit: 61285503d167b52e9bab9e4d0e45136ae05ae1c9
+amd64-GitFetch: refs/tags/dist-jammy-amd64-20260217-61285503
+arm32v7-GitCommit: 0c9f9f013e76c1ec378676aca21da5b4c9065a72
+arm32v7-GitFetch: refs/tags/dist-jammy-arm32v7-20260217-0c9f9f01
+arm64v8-GitCommit: 163f33541fc1607a83a7aa76bc17af005dda5bc4
+arm64v8-GitFetch: refs/tags/dist-jammy-arm64v8-20260217-163f3354
+ppc64le-GitCommit: 61e2a3961c300ba76b71105d3bd59222faa17288
+ppc64le-GitFetch: refs/tags/dist-jammy-ppc64le-20260217-61e2a396
+riscv64-GitCommit: 5de25c74a8e3f170e025025e840ed10a58905355
+riscv64-GitFetch: refs/tags/dist-jammy-riscv64-20260217-5de25c74
+s390x-GitCommit: 68c9c48a26b4ae22b14321f6182b45f8eda58727
+s390x-GitFetch: refs/tags/dist-jammy-s390x-20260217-68c9c48a
-Tags: 24.04, noble-20260210.1, noble, latest
+Tags: 24.04, noble-20260217, noble, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
Directory: oci
-amd64-GitCommit: 385384516f9bf26ae3520bb32aa512c4c5bdfb68
-amd64-GitFetch: refs/tags/dist-noble-amd64-20260210.1-38538451
-arm32v7-GitCommit: da8d702403f6a33768620f7c17ff98a2df9d0b4c
-arm32v7-GitFetch: refs/tags/dist-noble-arm32v7-20260210.1-da8d7024
-arm64v8-GitCommit: 2236c42358986631701e480e1f558e0526360539
-arm64v8-GitFetch: refs/tags/dist-noble-arm64v8-20260210.1-2236c423
-ppc64le-GitCommit: 28fb5f96835345092f43212333a3a7c546f5975f
-ppc64le-GitFetch: refs/tags/dist-noble-ppc64le-20260210.1-28fb5f96
-riscv64-GitCommit: 215fca0b84b60fa89a01e686403e0d67f02254d6
-riscv64-GitFetch: refs/tags/dist-noble-riscv64-20260210.1-215fca0b
-s390x-GitCommit: 87f3d5fd90f4f23bf131760a1813ef606781cee5
-s390x-GitFetch: refs/tags/dist-noble-s390x-20260210.1-87f3d5fd
+amd64-GitCommit: ccbfed8fb39874668fd747db8da268d2a03f3d50
+amd64-GitFetch: refs/tags/dist-noble-amd64-20260217-ccbfed8f
+arm32v7-GitCommit: ffaff629c4c0348bab4209818380c580fd21523c
+arm32v7-GitFetch: refs/tags/dist-noble-arm32v7-20260217-ffaff629
+arm64v8-GitCommit: 09950811f7ac9d9d3d14ce21440227503745933c
+arm64v8-GitFetch: refs/tags/dist-noble-arm64v8-20260217-09950811
+ppc64le-GitCommit: 5dff00f8f8f0f1d48a24f1d4deac856509594688
+ppc64le-GitFetch: refs/tags/dist-noble-ppc64le-20260217-5dff00f8
+riscv64-GitCommit: c4bb230846a518f3316bce0a3032b5d81f7f6b82
+riscv64-GitFetch: refs/tags/dist-noble-riscv64-20260217-c4bb2308
+s390x-GitCommit: 2c4d688ed1aba877cc61511b47dab6642a9de0bf
+s390x-GitFetch: refs/tags/dist-noble-s390x-20260217-2c4d688e
Tags: 25.10, questing-20251217, questing, rolling
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
@@ -52,18 +52,18 @@ riscv64-GitFetch: refs/tags/dist-questing-riscv64-20251217-b8e624be
s390x-GitCommit: 6b4d506a5d09422a94e8092c120977f38e20256d
s390x-GitFetch: refs/tags/dist-questing-s390x-20251217-6b4d506a
-Tags: 26.04, resolute-20260108, resolute, devel
+Tags: 26.04, resolute-20260312, resolute, devel
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
Directory: oci
-amd64-GitCommit: 9f123886b68e14781c19fe584ac24e9303815afd
-amd64-GitFetch: refs/tags/dist-resolute-amd64-20260108-9f123886
-arm32v7-GitCommit: 02adc59904f998dcc15789a67468299d489c2ce4
-arm32v7-GitFetch: refs/tags/dist-resolute-arm32v7-20260108-02adc599
-arm64v8-GitCommit: 0f4f086eae57fe16acf650827f476283b239d2ef
-arm64v8-GitFetch: refs/tags/dist-resolute-arm64v8-20260108-0f4f086e
-ppc64le-GitCommit: c5bb3b95f416467f62a7dcdd5b2152b1276eec20
-ppc64le-GitFetch: refs/tags/dist-resolute-ppc64le-20260108-c5bb3b95
-riscv64-GitCommit: 284338dfde4dd42920867763c1840b694de21bda
-riscv64-GitFetch: refs/tags/dist-resolute-riscv64-20260108-284338df
-s390x-GitCommit: 8643c15ff5d89a169059531a2453a13ba67c4b4b
-s390x-GitFetch: refs/tags/dist-resolute-s390x-20260108-8643c15f
+amd64-GitCommit: c212211acb8c2ecbdaa75e68bd65804f6f5bb953
+amd64-GitFetch: refs/tags/dist-resolute-amd64-20260312-c212211a
+arm32v7-GitCommit: 48f15c70b9193eefb7d874b057fa7245a1b07cf9
+arm32v7-GitFetch: refs/tags/dist-resolute-arm32v7-20260312-48f15c70
+arm64v8-GitCommit: 3e3c6c8ac7ea97c39934b2bc415cfd0114e040d1
+arm64v8-GitFetch: refs/tags/dist-resolute-arm64v8-20260312-3e3c6c8a
+ppc64le-GitCommit: 598c0cec5eb2ec2755b06ebdb1535b454622b8ec
+ppc64le-GitFetch: refs/tags/dist-resolute-ppc64le-20260312-598c0cec
+riscv64-GitCommit: b39ef5e4232fb0a7885912881c802540e0f8a37e
+riscv64-GitFetch: refs/tags/dist-resolute-riscv64-20260312-b39ef5e4
+s390x-GitCommit: 7042d2b55bf8a4b0e07f40b754333346e5a61f4a
+s390x-GitFetch: refs/tags/dist-resolute-s390x-20260312-7042d2b5
diff --git a/_bashbrew-list b/_bashbrew-list
index 8908053..8d9bb52 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -4,12 +4,12 @@ ubuntu:25.10
ubuntu:26.04
ubuntu:devel
ubuntu:jammy
-ubuntu:jammy-20260210.1
+ubuntu:jammy-20260217
ubuntu:latest
ubuntu:noble
-ubuntu:noble-20260210.1
+ubuntu:noble-20260217
ubuntu:questing
ubuntu:questing-20251217
ubuntu:resolute
-ubuntu:resolute-20260108
+ubuntu:resolute-20260312
ubuntu:rolling
diff --git a/ubuntu_devel/blobs/sha256/3c261c4d22b0eb03c17e9c8acc3b714b4abd96cd3b2435def412cb5367ae9e85 'tar -t' b/ubuntu_devel/blobs/sha256/353172d2243ba412db836ee33433b5bf98b7b5e712d6a842def962f77707b920 'tar -t'
similarity index 65%
rename from ubuntu_devel/blobs/sha256/3c261c4d22b0eb03c17e9c8acc3b714b4abd96cd3b2435def412cb5367ae9e85 'tar -t'
rename to ubuntu_devel/blobs/sha256/353172d2243ba412db836ee33433b5bf98b7b5e712d6a842def962f77707b920 'tar -t'
index df6e963..0258781 100644
--- a/ubuntu_devel/blobs/sha256/3c261c4d22b0eb03c17e9c8acc3b714b4abd96cd3b2435def412cb5367ae9e85 'tar -t'
+++ b/ubuntu_devel/blobs/sha256/353172d2243ba412db836ee33433b5bf98b7b5e712d6a842def962f77707b920 'tar -t'
@@ -460,6 +460,7 @@ usr/bin/partx
usr/bin/passwd
usr/bin/paste
usr/bin/pathchk
+usr/bin/pebble
usr/bin/perl
usr/bin/perl5.40.1
usr/bin/pgrep
@@ -801,6 +802,7 @@ usr/lib/tmpfiles.d/libselinux1.conf
usr/lib/tmpfiles.d/passwd.conf
usr/lib/udev/
usr/lib/udev/rules.d/
+usr/lib/udev/rules.d/61-apt.rules
usr/lib/udev/rules.d/64-ext4.rules
usr/lib/udev/rules.d/96-e2scrub.rules
usr/lib/x86_64-linux-gnu/
@@ -1111,7 +1113,7 @@ usr/lib/x86_64-linux-gnu/libformw.so.6
usr/lib/x86_64-linux-gnu/libformw.so.6.6
usr/lib/x86_64-linux-gnu/libgcc_s.so.1
usr/lib/x86_64-linux-gnu/libgcrypt.so.20
-usr/lib/x86_64-linux-gnu/libgcrypt.so.20.6.0
+usr/lib/x86_64-linux-gnu/libgcrypt.so.20.7.0
usr/lib/x86_64-linux-gnu/libgmp.so.10
usr/lib/x86_64-linux-gnu/libgmp.so.10.5.0
usr/lib/x86_64-linux-gnu/libgpg-error.so.0
@@ -1165,16 +1167,16 @@ usr/lib/x86_64-linux-gnu/libss.so.2
usr/lib/x86_64-linux-gnu/libss.so.2.0
usr/lib/x86_64-linux-gnu/libssl.so.3
usr/lib/x86_64-linux-gnu/libstdc++.so.6
-usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.34
+usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.35
usr/lib/x86_64-linux-gnu/libsystemd.so.0
-usr/lib/x86_64-linux-gnu/libsystemd.so.0.40.0
+usr/lib/x86_64-linux-gnu/libsystemd.so.0.42.0
usr/lib/x86_64-linux-gnu/libthread_db.so.1
usr/lib/x86_64-linux-gnu/libtic.so.6
usr/lib/x86_64-linux-gnu/libtic.so.6.6
usr/lib/x86_64-linux-gnu/libtinfo.so.6
usr/lib/x86_64-linux-gnu/libtinfo.so.6.6
usr/lib/x86_64-linux-gnu/libudev.so.1
-usr/lib/x86_64-linux-gnu/libudev.so.1.7.10
+usr/lib/x86_64-linux-gnu/libudev.so.1.7.12
usr/lib/x86_64-linux-gnu/libutil.so.1
usr/lib/x86_64-linux-gnu/libuuid.so.1
usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
@@ -1964,6 +1966,8 @@ usr/libexec/dpkg/dpkg-db-keeper
usr/libexec/e2fsprogs/
usr/libexec/e2fsprogs/e2scrub_all_cron
usr/libexec/e2fsprogs/e2scrub_fail
+usr/libexec/libselinux/
+usr/libexec/libselinux/selinux_compile_fcontexts
usr/libexec/rust-coreutils/
usr/libexec/rust-coreutils/libstdbuf.so
usr/local/
@@ -2141,109 +2145,116 @@ usr/share/bash-completion/completions/readprofile
usr/share/bash-completion/completions/renice
usr/share/bash-completion/completions/rtcwake
usr/share/bash-completion/completions/runuser
-usr/share/bash-completion/completions/rust-arch
-usr/share/bash-completion/completions/rust-base32
-usr/share/bash-completion/completions/rust-base64
-usr/share/bash-completion/completions/rust-basename
-usr/share/bash-completion/completions/rust-basenc
-usr/share/bash-completion/completions/rust-cat
-usr/share/bash-completion/completions/rust-chcon
-usr/share/bash-completion/completions/rust-chgrp
-usr/share/bash-completion/completions/rust-chmod
-usr/share/bash-completion/completions/rust-chown
-usr/share/bash-completion/completions/rust-chroot
-usr/share/bash-completion/completions/rust-cksum
-usr/share/bash-completion/completions/rust-comm
+usr/share/bash-completion/completions/rust-arch.bash
+usr/share/bash-completion/completions/rust-b2sum.bash
+usr/share/bash-completion/completions/rust-base32.bash
+usr/share/bash-completion/completions/rust-base64.bash
+usr/share/bash-completion/completions/rust-basename.bash
+usr/share/bash-completion/completions/rust-basenc.bash
+usr/share/bash-completion/completions/rust-cat.bash
+usr/share/bash-completion/completions/rust-chcon.bash
+usr/share/bash-completion/completions/rust-chgrp.bash
+usr/share/bash-completion/completions/rust-chmod.bash
+usr/share/bash-completion/completions/rust-chown.bash
+usr/share/bash-completion/completions/rust-chroot.bash
+usr/share/bash-completion/completions/rust-cksum.bash
+usr/share/bash-completion/completions/rust-comm.bash
usr/share/bash-completion/completions/rust-coreutils
-usr/share/bash-completion/completions/rust-cp
-usr/share/bash-completion/completions/rust-csplit
-usr/share/bash-completion/completions/rust-cut
-usr/share/bash-completion/completions/rust-date
-usr/share/bash-completion/completions/rust-dd
-usr/share/bash-completion/completions/rust-df
-usr/share/bash-completion/completions/rust-dir
-usr/share/bash-completion/completions/rust-dircolors
-usr/share/bash-completion/completions/rust-dirname
-usr/share/bash-completion/completions/rust-du
-usr/share/bash-completion/completions/rust-echo
-usr/share/bash-completion/completions/rust-env
-usr/share/bash-completion/completions/rust-expand
-usr/share/bash-completion/completions/rust-expr
-usr/share/bash-completion/completions/rust-factor
-usr/share/bash-completion/completions/rust-false
-usr/share/bash-completion/completions/rust-fmt
-usr/share/bash-completion/completions/rust-fold
-usr/share/bash-completion/completions/rust-groups
-usr/share/bash-completion/completions/rust-hashsum
-usr/share/bash-completion/completions/rust-head
-usr/share/bash-completion/completions/rust-hostid
-usr/share/bash-completion/completions/rust-hostname
-usr/share/bash-completion/completions/rust-id
-usr/share/bash-completion/completions/rust-install
-usr/share/bash-completion/completions/rust-join
-usr/share/bash-completion/completions/rust-kill
-usr/share/bash-completion/completions/rust-link
-usr/share/bash-completion/completions/rust-ln
-usr/share/bash-completion/completions/rust-logname
-usr/share/bash-completion/completions/rust-ls
-usr/share/bash-completion/completions/rust-mkdir
-usr/share/bash-completion/completions/rust-mkfifo
-usr/share/bash-completion/completions/rust-mknod
-usr/share/bash-completion/completions/rust-mktemp
-usr/share/bash-completion/completions/rust-more
-usr/share/bash-completion/completions/rust-mv
-usr/share/bash-completion/completions/rust-nice
-usr/share/bash-completion/completions/rust-nl
-usr/share/bash-completion/completions/rust-nohup
-usr/share/bash-completion/completions/rust-nproc
-usr/share/bash-completion/completions/rust-numfmt
-usr/share/bash-completion/completions/rust-od
-usr/share/bash-completion/completions/rust-paste
-usr/share/bash-completion/completions/rust-pathchk
-usr/share/bash-completion/completions/rust-pinky
-usr/share/bash-completion/completions/rust-pr
-usr/share/bash-completion/completions/rust-printenv
-usr/share/bash-completion/completions/rust-printf
-usr/share/bash-completion/completions/rust-ptx
-usr/share/bash-completion/completions/rust-pwd
-usr/share/bash-completion/completions/rust-readlink
-usr/share/bash-completion/completions/rust-realpath
-usr/share/bash-completion/completions/rust-rm
-usr/share/bash-completion/completions/rust-rmdir
-usr/share/bash-completion/completions/rust-runcon
-usr/share/bash-completion/completions/rust-seq
-usr/share/bash-completion/completions/rust-shred
-usr/share/bash-completion/completions/rust-shuf
-usr/share/bash-completion/completions/rust-sleep
-usr/share/bash-completion/completions/rust-sort
-usr/share/bash-completion/completions/rust-split
-usr/share/bash-completion/completions/rust-stat
-usr/share/bash-completion/completions/rust-stdbuf
-usr/share/bash-completion/completions/rust-stty
-usr/share/bash-completion/completions/rust-sum
-usr/share/bash-completion/completions/rust-sync
-usr/share/bash-completion/completions/rust-tac
-usr/share/bash-completion/completions/rust-tail
-usr/share/bash-completion/completions/rust-tee
-usr/share/bash-completion/completions/rust-test
-usr/share/bash-completion/completions/rust-timeout
-usr/share/bash-completion/completions/rust-touch
-usr/share/bash-completion/completions/rust-tr
-usr/share/bash-completion/completions/rust-true
-usr/share/bash-completion/completions/rust-truncate
-usr/share/bash-completion/completions/rust-tsort
-usr/share/bash-completion/completions/rust-tty
-usr/share/bash-completion/completions/rust-uname
-usr/share/bash-completion/completions/rust-unexpand
-usr/share/bash-completion/completions/rust-uniq
-usr/share/bash-completion/completions/rust-unlink
-usr/share/bash-completion/completions/rust-uptime
-usr/share/bash-completion/completions/rust-users
-usr/share/bash-completion/completions/rust-vdir
-usr/share/bash-completion/completions/rust-wc
-usr/share/bash-completion/completions/rust-who
-usr/share/bash-completion/completions/rust-whoami
-usr/share/bash-completion/completions/rust-yes
+usr/share/bash-completion/completions/rust-coreutils.bash
+usr/share/bash-completion/completions/rust-cp.bash
+usr/share/bash-completion/completions/rust-csplit.bash
+usr/share/bash-completion/completions/rust-cut.bash
+usr/share/bash-completion/completions/rust-date.bash
+usr/share/bash-completion/completions/rust-dd.bash
+usr/share/bash-completion/completions/rust-df.bash
+usr/share/bash-completion/completions/rust-dir.bash
+usr/share/bash-completion/completions/rust-dircolors.bash
+usr/share/bash-completion/completions/rust-dirname.bash
+usr/share/bash-completion/completions/rust-du.bash
+usr/share/bash-completion/completions/rust-echo.bash
+usr/share/bash-completion/completions/rust-env.bash
+usr/share/bash-completion/completions/rust-expand.bash
+usr/share/bash-completion/completions/rust-expr.bash
+usr/share/bash-completion/completions/rust-factor.bash
+usr/share/bash-completion/completions/rust-false.bash
+usr/share/bash-completion/completions/rust-fmt.bash
+usr/share/bash-completion/completions/rust-fold.bash
+usr/share/bash-completion/completions/rust-groups.bash
+usr/share/bash-completion/completions/rust-head.bash
+usr/share/bash-completion/completions/rust-hostid.bash
+usr/share/bash-completion/completions/rust-hostname.bash
+usr/share/bash-completion/completions/rust-id.bash
+usr/share/bash-completion/completions/rust-install.bash
+usr/share/bash-completion/completions/rust-join.bash
+usr/share/bash-completion/completions/rust-kill.bash
+usr/share/bash-completion/completions/rust-link.bash
+usr/share/bash-completion/completions/rust-ln.bash
+usr/share/bash-completion/completions/rust-logname.bash
+usr/share/bash-completion/completions/rust-ls.bash
+usr/share/bash-completion/completions/rust-md5sum.bash
+usr/share/bash-completion/completions/rust-mkdir.bash
+usr/share/bash-completion/completions/rust-mkfifo.bash
+usr/share/bash-completion/completions/rust-mknod.bash
+usr/share/bash-completion/completions/rust-mktemp.bash
+usr/share/bash-completion/completions/rust-more.bash
+usr/share/bash-completion/completions/rust-mv.bash
+usr/share/bash-completion/completions/rust-nice.bash
+usr/share/bash-completion/completions/rust-nl.bash
+usr/share/bash-completion/completions/rust-nohup.bash
+usr/share/bash-completion/completions/rust-nproc.bash
+usr/share/bash-completion/completions/rust-numfmt.bash
+usr/share/bash-completion/completions/rust-od.bash
+usr/share/bash-completion/completions/rust-paste.bash
+usr/share/bash-completion/completions/rust-pathchk.bash
+usr/share/bash-completion/completions/rust-pinky.bash
+usr/share/bash-completion/completions/rust-pr.bash
+usr/share/bash-completion/completions/rust-printenv.bash
+usr/share/bash-completion/completions/rust-printf.bash
+usr/share/bash-completion/completions/rust-ptx.bash
+usr/share/bash-completion/completions/rust-pwd.bash
+usr/share/bash-completion/completions/rust-readlink.bash
+usr/share/bash-completion/completions/rust-realpath.bash
+usr/share/bash-completion/completions/rust-rm.bash
+usr/share/bash-completion/completions/rust-rmdir.bash
+usr/share/bash-completion/completions/rust-runcon.bash
+usr/share/bash-completion/completions/rust-seq.bash
+usr/share/bash-completion/completions/rust-sha1sum.bash
+usr/share/bash-completion/completions/rust-sha224sum.bash
+usr/share/bash-completion/completions/rust-sha256sum.bash
+usr/share/bash-completion/completions/rust-sha384sum.bash
+usr/share/bash-completion/completions/rust-sha512sum.bash
+usr/share/bash-completion/completions/rust-shred.bash
+usr/share/bash-completion/completions/rust-shuf.bash
+usr/share/bash-completion/completions/rust-sleep.bash
+usr/share/bash-completion/completions/rust-sort.bash
+usr/share/bash-completion/completions/rust-split.bash
+usr/share/bash-completion/completions/rust-stat.bash
+usr/share/bash-completion/completions/rust-stdbuf.bash
+usr/share/bash-completion/completions/rust-stty.bash
+usr/share/bash-completion/completions/rust-sum.bash
+usr/share/bash-completion/completions/rust-sync.bash
+usr/share/bash-completion/completions/rust-tac.bash
+usr/share/bash-completion/completions/rust-tail.bash
+usr/share/bash-completion/completions/rust-tee.bash
+usr/share/bash-completion/completions/rust-test.bash
+usr/share/bash-completion/completions/rust-timeout.bash
+usr/share/bash-completion/completions/rust-touch.bash
+usr/share/bash-completion/completions/rust-tr.bash
+usr/share/bash-completion/completions/rust-true.bash
+usr/share/bash-completion/completions/rust-truncate.bash
+usr/share/bash-completion/completions/rust-tsort.bash
+usr/share/bash-completion/completions/rust-tty.bash
+usr/share/bash-completion/completions/rust-uname.bash
+usr/share/bash-completion/completions/rust-unexpand.bash
+usr/share/bash-completion/completions/rust-uniq.bash
+usr/share/bash-completion/completions/rust-unlink.bash
+usr/share/bash-completion/completions/rust-uptime.bash
+usr/share/bash-completion/completions/rust-users.bash
+usr/share/bash-completion/completions/rust-vdir.bash
+usr/share/bash-completion/completions/rust-wc.bash
+usr/share/bash-completion/completions/rust-who.bash
+usr/share/bash-completion/completions/rust-whoami.bash
+usr/share/bash-completion/completions/rust-yes.bash
usr/share/bash-completion/completions/script
usr/share/bash-completion/completions/scriptlive
usr/share/bash-completion/completions/scriptreplay
@@ -2349,9 +2360,9 @@ usr/share/doc/e2fsprogs/copyright
usr/share/doc/findutils/
usr/share/doc/findutils/changelog.Debian.gz
usr/share/doc/findutils/copyright
-usr/share/doc/gcc-15-base/
-usr/share/doc/gcc-15-base/changelog.Debian.gz
-usr/share/doc/gcc-15-base/copyright
+usr/share/doc/gcc-16-base/
+usr/share/doc/gcc-16-base/changelog.Debian.gz
+usr/share/doc/gcc-16-base/copyright
usr/share/doc/gnu-coreutils/
usr/share/doc/gnu-coreutils/changelog.Debian.gz
usr/share/doc/gnu-coreutils/copyright
@@ -2588,6 +2599,7 @@ usr/share/dpkg/varianttable
usr/share/fish/
usr/share/fish/vendor_completions.d/
usr/share/fish/vendor_completions.d/rust-arch.fish
+usr/share/fish/vendor_completions.d/rust-b2sum.fish
usr/share/fish/vendor_completions.d/rust-base32.fish
usr/share/fish/vendor_completions.d/rust-base64.fish
usr/share/fish/vendor_completions.d/rust-basename.fish
@@ -2620,7 +2632,6 @@ usr/share/fish/vendor_completions.d/rust-false.fish
usr/share/fish/vendor_completions.d/rust-fmt.fish
usr/share/fish/vendor_completions.d/rust-fold.fish
usr/share/fish/vendor_completions.d/rust-groups.fish
-usr/share/fish/vendor_completions.d/rust-hashsum.fish
usr/share/fish/vendor_completions.d/rust-head.fish
usr/share/fish/vendor_completions.d/rust-hostid.fish
usr/share/fish/vendor_completions.d/rust-hostname.fish
@@ -2632,6 +2643,7 @@ usr/share/fish/vendor_completions.d/rust-link.fish
usr/share/fish/vendor_completions.d/rust-ln.fish
usr/share/fish/vendor_completions.d/rust-logname.fish
usr/share/fish/vendor_completions.d/rust-ls.fish
+usr/share/fish/vendor_completions.d/rust-md5sum.fish
usr/share/fish/vendor_completions.d/rust-mkdir.fish
usr/share/fish/vendor_completions.d/rust-mkfifo.fish
usr/share/fish/vendor_completions.d/rust-mknod.fish
@@ -2658,6 +2670,11 @@ usr/share/fish/vendor_completions.d/rust-rm.fish
usr/share/fish/vendor_completions.d/rust-rmdir.fish
usr/share/fish/vendor_completions.d/rust-runcon.fish
usr/share/fish/vendor_completions.d/rust-seq.fish
+usr/share/fish/vendor_completions.d/rust-sha1sum.fish
+usr/share/fish/vendor_completions.d/rust-sha224sum.fish
+usr/share/fish/vendor_completions.d/rust-sha256sum.fish
+usr/share/fish/vendor_completions.d/rust-sha384sum.fish
+usr/share/fish/vendor_completions.d/rust-sha512sum.fish
usr/share/fish/vendor_completions.d/rust-shred.fish
usr/share/fish/vendor_completions.d/rust-shuf.fish
usr/share/fish/vendor_completions.d/rust-sleep.fish
@@ -2703,7 +2720,7 @@ usr/share/gdb/auto-load/
usr/share/gdb/auto-load/usr/
usr/share/gdb/auto-load/usr/lib/
usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/
-usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.34-gdb.py
+usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.35-gdb.py
usr/share/info.dir
usr/share/info/
usr/share/info/coreutils.info.gz
@@ -2752,6 +2769,7 @@ usr/share/lintian/overrides/libpam-runtime
usr/share/lintian/overrides/libpam0g
usr/share/lintian/overrides/libsmartcols1
usr/share/lintian/overrides/libssl3t64
+usr/share/lintian/overrides/login
usr/share/lintian/overrides/mount
usr/share/lintian/overrides/ncurses-base
usr/share/lintian/overrides/passwd
@@ -2968,205 +2986,2364 @@ usr/share/locale/zh_TW/LC_TIME/
usr/share/locale/zh_TW/LC_TIME/coreutils.mo
usr/share/locales/
usr/share/locales/arch/
+usr/share/locales/arch/ar.ftl
+usr/share/locales/arch/ast.ftl
+usr/share/locales/arch/ca.ftl
+usr/share/locales/arch/cs.ftl
+usr/share/locales/arch/de.ftl
+usr/share/locales/arch/eo.ftl
+usr/share/locales/arch/es-ES.ftl
+usr/share/locales/arch/es.ftl
+usr/share/locales/arch/et.ftl
+usr/share/locales/arch/fa.ftl
+usr/share/locales/arch/fi.ftl
usr/share/locales/arch/fr-FR.ftl
+usr/share/locales/arch/he.ftl
+usr/share/locales/arch/hu.ftl
+usr/share/locales/arch/it.ftl
+usr/share/locales/arch/ja.ftl
+usr/share/locales/arch/kab.ftl
+usr/share/locales/arch/ko.ftl
+usr/share/locales/arch/nb-NO.ftl
+usr/share/locales/arch/pl.ftl
+usr/share/locales/arch/pt-BR.ftl
+usr/share/locales/arch/pt.ftl
+usr/share/locales/arch/ru.ftl
+usr/share/locales/arch/sv.ftl
+usr/share/locales/arch/tr.ftl
+usr/share/locales/arch/uk.ftl
+usr/share/locales/arch/vi.ftl
+usr/share/locales/arch/zh-Hans.ftl
+usr/share/locales/arch/zh-Hant.ftl
usr/share/locales/base32/
+usr/share/locales/base32/ar.ftl
+usr/share/locales/base32/ast.ftl
+usr/share/locales/base32/ca.ftl
+usr/share/locales/base32/cs.ftl
+usr/share/locales/base32/de.ftl
+usr/share/locales/base32/eo.ftl
+usr/share/locales/base32/es-ES.ftl
+usr/share/locales/base32/fi.ftl
usr/share/locales/base32/fr-FR.ftl
+usr/share/locales/base32/he.ftl
+usr/share/locales/base32/hu.ftl
+usr/share/locales/base32/it.ftl
+usr/share/locales/base32/ja.ftl
+usr/share/locales/base32/kab.ftl
+usr/share/locales/base32/ko.ftl
+usr/share/locales/base32/nb-NO.ftl
+usr/share/locales/base32/pl.ftl
+usr/share/locales/base32/pt-BR.ftl
+usr/share/locales/base32/pt.ftl
+usr/share/locales/base32/ru.ftl
+usr/share/locales/base32/sv.ftl
+usr/share/locales/base32/tr.ftl
+usr/share/locales/base32/uk.ftl
+usr/share/locales/base32/vi.ftl
+usr/share/locales/base32/zh-Hans.ftl
+usr/share/locales/base32/zh-Hant.ftl
usr/share/locales/base64/
+usr/share/locales/base64/ar.ftl
+usr/share/locales/base64/ast.ftl
+usr/share/locales/base64/ca.ftl
+usr/share/locales/base64/cs.ftl
+usr/share/locales/base64/de.ftl
+usr/share/locales/base64/eo.ftl
+usr/share/locales/base64/es-ES.ftl
+usr/share/locales/base64/fi.ftl
usr/share/locales/base64/fr-FR.ftl
+usr/share/locales/base64/he.ftl
+usr/share/locales/base64/hu.ftl
+usr/share/locales/base64/it.ftl
+usr/share/locales/base64/ja.ftl
+usr/share/locales/base64/kab.ftl
+usr/share/locales/base64/ko.ftl
+usr/share/locales/base64/nb-NO.ftl
+usr/share/locales/base64/pl.ftl
+usr/share/locales/base64/pt-BR.ftl
+usr/share/locales/base64/pt.ftl
+usr/share/locales/base64/ru.ftl
+usr/share/locales/base64/sv.ftl
+usr/share/locales/base64/tr.ftl
+usr/share/locales/base64/uk.ftl
+usr/share/locales/base64/vi.ftl
+usr/share/locales/base64/zh-Hans.ftl
+usr/share/locales/base64/zh-Hant.ftl
usr/share/locales/basename/
+usr/share/locales/basename/ar.ftl
+usr/share/locales/basename/ast.ftl
+usr/share/locales/basename/ca.ftl
+usr/share/locales/basename/cs.ftl
+usr/share/locales/basename/de.ftl
+usr/share/locales/basename/eo.ftl
+usr/share/locales/basename/es-ES.ftl
+usr/share/locales/basename/fi.ftl
usr/share/locales/basename/fr-FR.ftl
+usr/share/locales/basename/he.ftl
+usr/share/locales/basename/hu.ftl
+usr/share/locales/basename/it.ftl
+usr/share/locales/basename/ja.ftl
+usr/share/locales/basename/kab.ftl
+usr/share/locales/basename/ko.ftl
+usr/share/locales/basename/nb-NO.ftl
+usr/share/locales/basename/pl.ftl
+usr/share/locales/basename/pt-BR.ftl
+usr/share/locales/basename/pt.ftl
+usr/share/locales/basename/ru.ftl
+usr/share/locales/basename/sv.ftl
+usr/share/locales/basename/tr.ftl
+usr/share/locales/basename/uk.ftl
+usr/share/locales/basename/vi.ftl
+usr/share/locales/basename/zh-Hans.ftl
+usr/share/locales/basename/zh-Hant.ftl
usr/share/locales/basenc/
+usr/share/locales/basenc/ar.ftl
+usr/share/locales/basenc/ast.ftl
+usr/share/locales/basenc/ca.ftl
+usr/share/locales/basenc/cs.ftl
+usr/share/locales/basenc/de.ftl
+usr/share/locales/basenc/eo.ftl
+usr/share/locales/basenc/es-ES.ftl
+usr/share/locales/basenc/fi.ftl
usr/share/locales/basenc/fr-FR.ftl
+usr/share/locales/basenc/he.ftl
+usr/share/locales/basenc/hu.ftl
+usr/share/locales/basenc/it.ftl
+usr/share/locales/basenc/ja.ftl
+usr/share/locales/basenc/kab.ftl
+usr/share/locales/basenc/ko.ftl
+usr/share/locales/basenc/nb-NO.ftl
+usr/share/locales/basenc/pl.ftl
+usr/share/locales/basenc/pt-BR.ftl
+usr/share/locales/basenc/pt.ftl
+usr/share/locales/basenc/ru.ftl
+usr/share/locales/basenc/sv.ftl
+usr/share/locales/basenc/tr.ftl
+usr/share/locales/basenc/uk.ftl
+usr/share/locales/basenc/vi.ftl
+usr/share/locales/basenc/zh-Hans.ftl
+usr/share/locales/basenc/zh-Hant.ftl
usr/share/locales/cat/
+usr/share/locales/cat/ar.ftl
+usr/share/locales/cat/ast.ftl
+usr/share/locales/cat/ca.ftl
+usr/share/locales/cat/cs.ftl
+usr/share/locales/cat/de.ftl
+usr/share/locales/cat/eo.ftl
+usr/share/locales/cat/es-ES.ftl
+usr/share/locales/cat/fi.ftl
usr/share/locales/cat/fr-FR.ftl
+usr/share/locales/cat/he.ftl
+usr/share/locales/cat/hu.ftl
+usr/share/locales/cat/it.ftl
+usr/share/locales/cat/ja.ftl
+usr/share/locales/cat/kab.ftl
+usr/share/locales/cat/ko.ftl
+usr/share/locales/cat/nb-NO.ftl
+usr/share/locales/cat/pl.ftl
+usr/share/locales/cat/pt-BR.ftl
+usr/share/locales/cat/pt.ftl
+usr/share/locales/cat/ru.ftl
+usr/share/locales/cat/sv.ftl
+usr/share/locales/cat/tr.ftl
+usr/share/locales/cat/uk.ftl
+usr/share/locales/cat/vi.ftl
+usr/share/locales/cat/zh-Hans.ftl
+usr/share/locales/cat/zh-Hant.ftl
usr/share/locales/chcon/
+usr/share/locales/chcon/ar.ftl
+usr/share/locales/chcon/ast.ftl
+usr/share/locales/chcon/cs.ftl
+usr/share/locales/chcon/de.ftl
+usr/share/locales/chcon/es-ES.ftl
+usr/share/locales/chcon/fi.ftl
usr/share/locales/chcon/fr-FR.ftl
+usr/share/locales/chcon/he.ftl
+usr/share/locales/chcon/hu.ftl
+usr/share/locales/chcon/it.ftl
+usr/share/locales/chcon/ja.ftl
+usr/share/locales/chcon/kab.ftl
+usr/share/locales/chcon/ko.ftl
+usr/share/locales/chcon/pl.ftl
+usr/share/locales/chcon/pt-BR.ftl
+usr/share/locales/chcon/pt.ftl
+usr/share/locales/chcon/ru.ftl
+usr/share/locales/chcon/sv.ftl
+usr/share/locales/chcon/tr.ftl
+usr/share/locales/chcon/uk.ftl
+usr/share/locales/chcon/vi.ftl
+usr/share/locales/chcon/zh-Hans.ftl
+usr/share/locales/chcon/zh-Hant.ftl
usr/share/locales/chgrp/
+usr/share/locales/chgrp/ar.ftl
+usr/share/locales/chgrp/ast.ftl
+usr/share/locales/chgrp/ca.ftl
+usr/share/locales/chgrp/cs.ftl
+usr/share/locales/chgrp/de.ftl
+usr/share/locales/chgrp/eo.ftl
+usr/share/locales/chgrp/es-ES.ftl
+usr/share/locales/chgrp/fi.ftl
usr/share/locales/chgrp/fr-FR.ftl
+usr/share/locales/chgrp/he.ftl
+usr/share/locales/chgrp/hu.ftl
+usr/share/locales/chgrp/it.ftl
+usr/share/locales/chgrp/ja.ftl
+usr/share/locales/chgrp/kab.ftl
+usr/share/locales/chgrp/ko.ftl
+usr/share/locales/chgrp/nb-NO.ftl
+usr/share/locales/chgrp/pl.ftl
+usr/share/locales/chgrp/pt-BR.ftl
+usr/share/locales/chgrp/pt.ftl
+usr/share/locales/chgrp/ru.ftl
+usr/share/locales/chgrp/sv.ftl
+usr/share/locales/chgrp/tr.ftl
+usr/share/locales/chgrp/uk.ftl
+usr/share/locales/chgrp/vi.ftl
+usr/share/locales/chgrp/zh-Hans.ftl
+usr/share/locales/chgrp/zh-Hant.ftl
usr/share/locales/chmod/
+usr/share/locales/chmod/ar.ftl
+usr/share/locales/chmod/ast.ftl
+usr/share/locales/chmod/ca.ftl
+usr/share/locales/chmod/cs.ftl
+usr/share/locales/chmod/de.ftl
+usr/share/locales/chmod/eo.ftl
+usr/share/locales/chmod/es-ES.ftl
+usr/share/locales/chmod/et.ftl
+usr/share/locales/chmod/fi.ftl
usr/share/locales/chmod/fr-FR.ftl
+usr/share/locales/chmod/he.ftl
+usr/share/locales/chmod/hu.ftl
+usr/share/locales/chmod/it.ftl
+usr/share/locales/chmod/ja.ftl
+usr/share/locales/chmod/kab.ftl
+usr/share/locales/chmod/ko.ftl
+usr/share/locales/chmod/nb-NO.ftl
+usr/share/locales/chmod/pl.ftl
+usr/share/locales/chmod/pt-BR.ftl
+usr/share/locales/chmod/pt.ftl
+usr/share/locales/chmod/ru.ftl
+usr/share/locales/chmod/sv.ftl
+usr/share/locales/chmod/tr.ftl
+usr/share/locales/chmod/uk.ftl
+usr/share/locales/chmod/vi.ftl
+usr/share/locales/chmod/zh-Hans.ftl
+usr/share/locales/chmod/zh-Hant.ftl
usr/share/locales/chown/
+usr/share/locales/chown/ar.ftl
+usr/share/locales/chown/ast.ftl
+usr/share/locales/chown/cs.ftl
+usr/share/locales/chown/de.ftl
+usr/share/locales/chown/es-ES.ftl
+usr/share/locales/chown/fi.ftl
usr/share/locales/chown/fr-FR.ftl
+usr/share/locales/chown/he.ftl
+usr/share/locales/chown/hu.ftl
+usr/share/locales/chown/it.ftl
+usr/share/locales/chown/ja.ftl
+usr/share/locales/chown/kab.ftl
+usr/share/locales/chown/ko.ftl
+usr/share/locales/chown/pl.ftl
+usr/share/locales/chown/pt-BR.ftl
+usr/share/locales/chown/pt.ftl
+usr/share/locales/chown/ru.ftl
+usr/share/locales/chown/sv.ftl
+usr/share/locales/chown/tr.ftl
+usr/share/locales/chown/uk.ftl
+usr/share/locales/chown/vi.ftl
+usr/share/locales/chown/zh-Hans.ftl
+usr/share/locales/chown/zh-Hant.ftl
usr/share/locales/chroot/
+usr/share/locales/chroot/ar.ftl
+usr/share/locales/chroot/ast.ftl
+usr/share/locales/chroot/cs.ftl
+usr/share/locales/chroot/de.ftl
+usr/share/locales/chroot/es-ES.ftl
+usr/share/locales/chroot/fi.ftl
usr/share/locales/chroot/fr-FR.ftl
+usr/share/locales/chroot/he.ftl
+usr/share/locales/chroot/it.ftl
+usr/share/locales/chroot/ja.ftl
+usr/share/locales/chroot/kab.ftl
+usr/share/locales/chroot/pl.ftl
+usr/share/locales/chroot/pt-BR.ftl
+usr/share/locales/chroot/pt.ftl
+usr/share/locales/chroot/ru.ftl
+usr/share/locales/chroot/sv.ftl
+usr/share/locales/chroot/uk.ftl
+usr/share/locales/chroot/vi.ftl
+usr/share/locales/chroot/zh-Hans.ftl
+usr/share/locales/chroot/zh-Hant.ftl
usr/share/locales/cksum/
+usr/share/locales/cksum/ar.ftl
+usr/share/locales/cksum/ast.ftl
+usr/share/locales/cksum/ca.ftl
+usr/share/locales/cksum/cs.ftl
+usr/share/locales/cksum/eo.ftl
+usr/share/locales/cksum/es-ES.ftl
+usr/share/locales/cksum/fi.ftl
usr/share/locales/cksum/fr-FR.ftl
+usr/share/locales/cksum/he.ftl
+usr/share/locales/cksum/hu.ftl
+usr/share/locales/cksum/it.ftl
+usr/share/locales/cksum/ja.ftl
+usr/share/locales/cksum/kab.ftl
+usr/share/locales/cksum/ko.ftl
+usr/share/locales/cksum/nb-NO.ftl
+usr/share/locales/cksum/pl.ftl
+usr/share/locales/cksum/pt-BR.ftl
+usr/share/locales/cksum/pt.ftl
+usr/share/locales/cksum/ru.ftl
+usr/share/locales/cksum/sv.ftl
+usr/share/locales/cksum/tr.ftl
+usr/share/locales/cksum/uk.ftl
+usr/share/locales/cksum/vi.ftl
+usr/share/locales/cksum/zh-Hans.ftl
+usr/share/locales/cksum/zh-Hant.ftl
usr/share/locales/comm/
+usr/share/locales/comm/ar.ftl
+usr/share/locales/comm/ast.ftl
+usr/share/locales/comm/ca.ftl
+usr/share/locales/comm/cs.ftl
+usr/share/locales/comm/eo.ftl
+usr/share/locales/comm/es-ES.ftl
+usr/share/locales/comm/fi.ftl
usr/share/locales/comm/fr-FR.ftl
+usr/share/locales/comm/he.ftl
+usr/share/locales/comm/it.ftl
+usr/share/locales/comm/ja.ftl
+usr/share/locales/comm/kab.ftl
+usr/share/locales/comm/ko.ftl
+usr/share/locales/comm/nb-NO.ftl
+usr/share/locales/comm/pl.ftl
+usr/share/locales/comm/pt-BR.ftl
+usr/share/locales/comm/pt.ftl
+usr/share/locales/comm/ru.ftl
+usr/share/locales/comm/sv.ftl
+usr/share/locales/comm/tr.ftl
+usr/share/locales/comm/uk.ftl
+usr/share/locales/comm/vi.ftl
+usr/share/locales/comm/zh-Hans.ftl
+usr/share/locales/comm/zh-Hant.ftl
usr/share/locales/cp/
+usr/share/locales/cp/ar.ftl
+usr/share/locales/cp/ast.ftl
+usr/share/locales/cp/cs.ftl
+usr/share/locales/cp/es-ES.ftl
+usr/share/locales/cp/fi.ftl
usr/share/locales/cp/fr-FR.ftl
+usr/share/locales/cp/he.ftl
+usr/share/locales/cp/it.ftl
+usr/share/locales/cp/ja.ftl
+usr/share/locales/cp/kab.ftl
+usr/share/locales/cp/ko.ftl
+usr/share/locales/cp/pl.ftl
+usr/share/locales/cp/pt-BR.ftl
+usr/share/locales/cp/pt.ftl
+usr/share/locales/cp/ru.ftl
+usr/share/locales/cp/sv.ftl
+usr/share/locales/cp/tr.ftl
+usr/share/locales/cp/uk.ftl
+usr/share/locales/cp/vi.ftl
+usr/share/locales/cp/zh-Hans.ftl
+usr/share/locales/cp/zh-Hant.ftl
usr/share/locales/csplit/
+usr/share/locales/csplit/ar.ftl
+usr/share/locales/csplit/ast.ftl
+usr/share/locales/csplit/ca.ftl
+usr/share/locales/csplit/cs.ftl
+usr/share/locales/csplit/eo.ftl
+usr/share/locales/csplit/es-ES.ftl
+usr/share/locales/csplit/fi.ftl
usr/share/locales/csplit/fr-FR.ftl
+usr/share/locales/csplit/he.ftl
+usr/share/locales/csplit/it.ftl
+usr/share/locales/csplit/ja.ftl
+usr/share/locales/csplit/kab.ftl
+usr/share/locales/csplit/ko.ftl
+usr/share/locales/csplit/nb-NO.ftl
+usr/share/locales/csplit/pl.ftl
+usr/share/locales/csplit/pt-BR.ftl
+usr/share/locales/csplit/pt.ftl
+usr/share/locales/csplit/ru.ftl
+usr/share/locales/csplit/sv.ftl
+usr/share/locales/csplit/tr.ftl
+usr/share/locales/csplit/uk.ftl
+usr/share/locales/csplit/vi.ftl
+usr/share/locales/csplit/zh-Hans.ftl
+usr/share/locales/csplit/zh-Hant.ftl
usr/share/locales/cut/
+usr/share/locales/cut/ar.ftl
+usr/share/locales/cut/ast.ftl
+usr/share/locales/cut/cs.ftl
+usr/share/locales/cut/es-ES.ftl
+usr/share/locales/cut/fi.ftl
usr/share/locales/cut/fr-FR.ftl
+usr/share/locales/cut/he.ftl
+usr/share/locales/cut/it.ftl
+usr/share/locales/cut/ja.ftl
+usr/share/locales/cut/kab.ftl
+usr/share/locales/cut/ko.ftl
+usr/share/locales/cut/pl.ftl
+usr/share/locales/cut/pt-BR.ftl
+usr/share/locales/cut/pt.ftl
+usr/share/locales/cut/ru.ftl
+usr/share/locales/cut/sv.ftl
+usr/share/locales/cut/tr.ftl
+usr/share/locales/cut/uk.ftl
+usr/share/locales/cut/vi.ftl
+usr/share/locales/cut/zh-Hans.ftl
+usr/share/locales/cut/zh-Hant.ftl
usr/share/locales/date/
+usr/share/locales/date/ar.ftl
+usr/share/locales/date/ast.ftl
+usr/share/locales/date/cs.ftl
+usr/share/locales/date/es-ES.ftl
+usr/share/locales/date/fi.ftl
usr/share/locales/date/fr-FR.ftl
+usr/share/locales/date/he.ftl
+usr/share/locales/date/it.ftl
+usr/share/locales/date/ja.ftl
+usr/share/locales/date/kab.ftl
+usr/share/locales/date/ko.ftl
+usr/share/locales/date/pl.ftl
+usr/share/locales/date/pt-BR.ftl
+usr/share/locales/date/pt.ftl
+usr/share/locales/date/ru.ftl
+usr/share/locales/date/sv.ftl
+usr/share/locales/date/tr.ftl
+usr/share/locales/date/uk.ftl
+usr/share/locales/date/vi.ftl
+usr/share/locales/date/zh-Hans.ftl
+usr/share/locales/date/zh-Hant.ftl
usr/share/locales/dd/
+usr/share/locales/dd/ar.ftl
+usr/share/locales/dd/ast.ftl
+usr/share/locales/dd/ca.ftl
+usr/share/locales/dd/cs.ftl
+usr/share/locales/dd/eo.ftl
+usr/share/locales/dd/es-ES.ftl
+usr/share/locales/dd/fi.ftl
usr/share/locales/dd/fr-FR.ftl
+usr/share/locales/dd/he.ftl
+usr/share/locales/dd/it.ftl
+usr/share/locales/dd/ja.ftl
+usr/share/locales/dd/kab.ftl
+usr/share/locales/dd/ko.ftl
+usr/share/locales/dd/nb-NO.ftl
+usr/share/locales/dd/pl.ftl
+usr/share/locales/dd/pt-BR.ftl
+usr/share/locales/dd/pt.ftl
+usr/share/locales/dd/ru.ftl
+usr/share/locales/dd/sv.ftl
+usr/share/locales/dd/tr.ftl
+usr/share/locales/dd/uk.ftl
+usr/share/locales/dd/vi.ftl
+usr/share/locales/dd/zh-Hans.ftl
+usr/share/locales/dd/zh-Hant.ftl
usr/share/locales/df/
+usr/share/locales/df/ar.ftl
+usr/share/locales/df/ast.ftl
+usr/share/locales/df/cs.ftl
+usr/share/locales/df/es-ES.ftl
+usr/share/locales/df/fi.ftl
usr/share/locales/df/fr-FR.ftl
+usr/share/locales/df/he.ftl
+usr/share/locales/df/it.ftl
+usr/share/locales/df/ja.ftl
+usr/share/locales/df/kab.ftl
+usr/share/locales/df/pl.ftl
+usr/share/locales/df/pt-BR.ftl
+usr/share/locales/df/pt.ftl
+usr/share/locales/df/ru.ftl
+usr/share/locales/df/sv.ftl
+usr/share/locales/df/uk.ftl
+usr/share/locales/df/vi.ftl
+usr/share/locales/df/zh-Hans.ftl
+usr/share/locales/df/zh-Hant.ftl
usr/share/locales/dircolors/
+usr/share/locales/dircolors/ar.ftl
+usr/share/locales/dircolors/ast.ftl
+usr/share/locales/dircolors/ca.ftl
+usr/share/locales/dircolors/cs.ftl
+usr/share/locales/dircolors/eo.ftl
+usr/share/locales/dircolors/es-ES.ftl
+usr/share/locales/dircolors/fi.ftl
usr/share/locales/dircolors/fr-FR.ftl
+usr/share/locales/dircolors/he.ftl
+usr/share/locales/dircolors/it.ftl
+usr/share/locales/dircolors/ja.ftl
+usr/share/locales/dircolors/kab.ftl
+usr/share/locales/dircolors/ko.ftl
+usr/share/locales/dircolors/nb-NO.ftl
+usr/share/locales/dircolors/pl.ftl
+usr/share/locales/dircolors/pt-BR.ftl
+usr/share/locales/dircolors/pt.ftl
+usr/share/locales/dircolors/ru.ftl
+usr/share/locales/dircolors/sv.ftl
+usr/share/locales/dircolors/tr.ftl
+usr/share/locales/dircolors/uk.ftl
+usr/share/locales/dircolors/vi.ftl
+usr/share/locales/dircolors/zh-Hans.ftl
+usr/share/locales/dircolors/zh-Hant.ftl
usr/share/locales/dirname/
+usr/share/locales/dirname/ar.ftl
+usr/share/locales/dirname/ast.ftl
+usr/share/locales/dirname/ca.ftl
+usr/share/locales/dirname/cs.ftl
+usr/share/locales/dirname/eo.ftl
+usr/share/locales/dirname/es-ES.ftl
+usr/share/locales/dirname/fi.ftl
usr/share/locales/dirname/fr-FR.ftl
+usr/share/locales/dirname/he.ftl
+usr/share/locales/dirname/it.ftl
+usr/share/locales/dirname/ja.ftl
+usr/share/locales/dirname/kab.ftl
+usr/share/locales/dirname/ko.ftl
+usr/share/locales/dirname/nb-NO.ftl
+usr/share/locales/dirname/pl.ftl
+usr/share/locales/dirname/pt-BR.ftl
+usr/share/locales/dirname/pt.ftl
+usr/share/locales/dirname/ru.ftl
+usr/share/locales/dirname/sv.ftl
+usr/share/locales/dirname/tr.ftl
+usr/share/locales/dirname/uk.ftl
+usr/share/locales/dirname/vi.ftl
+usr/share/locales/dirname/zh-Hans.ftl
+usr/share/locales/dirname/zh-Hant.ftl
usr/share/locales/du/
+usr/share/locales/du/es-ES.ftl
usr/share/locales/du/fr-FR.ftl
+usr/share/locales/du/vi.ftl
usr/share/locales/echo/
+usr/share/locales/echo/ar.ftl
+usr/share/locales/echo/ast.ftl
+usr/share/locales/echo/ca.ftl
+usr/share/locales/echo/cs.ftl
+usr/share/locales/echo/eo.ftl
+usr/share/locales/echo/es-ES.ftl
+usr/share/locales/echo/fi.ftl
usr/share/locales/echo/fr-FR.ftl
+usr/share/locales/echo/he.ftl
+usr/share/locales/echo/it.ftl
+usr/share/locales/echo/ja.ftl
+usr/share/locales/echo/kab.ftl
+usr/share/locales/echo/ko.ftl
+usr/share/locales/echo/nb-NO.ftl
+usr/share/locales/echo/pl.ftl
+usr/share/locales/echo/pt-BR.ftl
+usr/share/locales/echo/pt.ftl
+usr/share/locales/echo/ru.ftl
+usr/share/locales/echo/sv.ftl
+usr/share/locales/echo/tr.ftl
+usr/share/locales/echo/uk.ftl
+usr/share/locales/echo/vi.ftl
+usr/share/locales/echo/zh-Hans.ftl
+usr/share/locales/echo/zh-Hant.ftl
usr/share/locales/env/
+usr/share/locales/env/es-ES.ftl
usr/share/locales/env/fr-FR.ftl
usr/share/locales/expand/
+usr/share/locales/expand/ar.ftl
+usr/share/locales/expand/ast.ftl
+usr/share/locales/expand/cs.ftl
+usr/share/locales/expand/es-ES.ftl
+usr/share/locales/expand/fi.ftl
usr/share/locales/expand/fr-FR.ftl
+usr/share/locales/expand/he.ftl
+usr/share/locales/expand/it.ftl
+usr/share/locales/expand/ja.ftl
+usr/share/locales/expand/kab.ftl
+usr/share/locales/expand/pl.ftl
+usr/share/locales/expand/pt-BR.ftl
+usr/share/locales/expand/pt.ftl
+usr/share/locales/expand/ru.ftl
+usr/share/locales/expand/sv.ftl
+usr/share/locales/expand/uk.ftl
+usr/share/locales/expand/vi.ftl
+usr/share/locales/expand/zh-Hans.ftl
+usr/share/locales/expand/zh-Hant.ftl
usr/share/locales/expr/
+usr/share/locales/expr/ar.ftl
+usr/share/locales/expr/ast.ftl
+usr/share/locales/expr/ca.ftl
+usr/share/locales/expr/cs.ftl
+usr/share/locales/expr/eo.ftl
+usr/share/locales/expr/es-ES.ftl
+usr/share/locales/expr/fi.ftl
usr/share/locales/expr/fr-FR.ftl
+usr/share/locales/expr/he.ftl
+usr/share/locales/expr/it.ftl
+usr/share/locales/expr/ja.ftl
+usr/share/locales/expr/kab.ftl
+usr/share/locales/expr/ko.ftl
+usr/share/locales/expr/nb-NO.ftl
+usr/share/locales/expr/pl.ftl
+usr/share/locales/expr/pt-BR.ftl
+usr/share/locales/expr/pt.ftl
+usr/share/locales/expr/ru.ftl
+usr/share/locales/expr/sv.ftl
+usr/share/locales/expr/tr.ftl
+usr/share/locales/expr/uk.ftl
+usr/share/locales/expr/vi.ftl
+usr/share/locales/expr/zh-Hans.ftl
+usr/share/locales/expr/zh-Hant.ftl
usr/share/locales/factor/
+usr/share/locales/factor/ar.ftl
+usr/share/locales/factor/ast.ftl
+usr/share/locales/factor/ca.ftl
+usr/share/locales/factor/cs.ftl
+usr/share/locales/factor/eo.ftl
+usr/share/locales/factor/es-ES.ftl
+usr/share/locales/factor/fi.ftl
usr/share/locales/factor/fr-FR.ftl
+usr/share/locales/factor/he.ftl
+usr/share/locales/factor/it.ftl
+usr/share/locales/factor/ja.ftl
+usr/share/locales/factor/kab.ftl
+usr/share/locales/factor/ko.ftl
+usr/share/locales/factor/nb-NO.ftl
+usr/share/locales/factor/pl.ftl
+usr/share/locales/factor/pt-BR.ftl
+usr/share/locales/factor/pt.ftl
+usr/share/locales/factor/ru.ftl
+usr/share/locales/factor/sv.ftl
+usr/share/locales/factor/tr.ftl
+usr/share/locales/factor/uk.ftl
+usr/share/locales/factor/vi.ftl
+usr/share/locales/factor/zh-Hans.ftl
+usr/share/locales/factor/zh-Hant.ftl
usr/share/locales/false/
+usr/share/locales/false/ar.ftl
+usr/share/locales/false/ast.ftl
+usr/share/locales/false/ca.ftl
+usr/share/locales/false/cs.ftl
+usr/share/locales/false/eo.ftl
+usr/share/locales/false/es-ES.ftl
+usr/share/locales/false/fi.ftl
usr/share/locales/false/fr-FR.ftl
+usr/share/locales/false/he.ftl
+usr/share/locales/false/hu.ftl
+usr/share/locales/false/it.ftl
+usr/share/locales/false/ja.ftl
+usr/share/locales/false/kab.ftl
+usr/share/locales/false/ko.ftl
+usr/share/locales/false/nb-NO.ftl
+usr/share/locales/false/pl.ftl
+usr/share/locales/false/pt-BR.ftl
+usr/share/locales/false/pt.ftl
+usr/share/locales/false/ru.ftl
+usr/share/locales/false/sv.ftl
+usr/share/locales/false/tr.ftl
+usr/share/locales/false/uk.ftl
+usr/share/locales/false/vi.ftl
+usr/share/locales/false/zh-Hans.ftl
+usr/share/locales/false/zh-Hant.ftl
usr/share/locales/fmt/
+usr/share/locales/fmt/ar.ftl
+usr/share/locales/fmt/ast.ftl
+usr/share/locales/fmt/ca.ftl
+usr/share/locales/fmt/cs.ftl
+usr/share/locales/fmt/eo.ftl
+usr/share/locales/fmt/es-ES.ftl
+usr/share/locales/fmt/fi.ftl
usr/share/locales/fmt/fr-FR.ftl
+usr/share/locales/fmt/he.ftl
+usr/share/locales/fmt/it.ftl
+usr/share/locales/fmt/ja.ftl
+usr/share/locales/fmt/kab.ftl
+usr/share/locales/fmt/ko.ftl
+usr/share/locales/fmt/nb-NO.ftl
+usr/share/locales/fmt/pl.ftl
+usr/share/locales/fmt/pt-BR.ftl
+usr/share/locales/fmt/pt.ftl
+usr/share/locales/fmt/ru.ftl
+usr/share/locales/fmt/sv.ftl
+usr/share/locales/fmt/tr.ftl
+usr/share/locales/fmt/uk.ftl
+usr/share/locales/fmt/vi.ftl
+usr/share/locales/fmt/zh-Hans.ftl
+usr/share/locales/fmt/zh-Hant.ftl
usr/share/locales/fold/
+usr/share/locales/fold/ar.ftl
+usr/share/locales/fold/ast.ftl
+usr/share/locales/fold/ca.ftl
+usr/share/locales/fold/cs.ftl
+usr/share/locales/fold/eo.ftl
+usr/share/locales/fold/es-ES.ftl
+usr/share/locales/fold/fi.ftl
usr/share/locales/fold/fr-FR.ftl
+usr/share/locales/fold/he.ftl
+usr/share/locales/fold/it.ftl
+usr/share/locales/fold/ja.ftl
+usr/share/locales/fold/kab.ftl
+usr/share/locales/fold/ko.ftl
+usr/share/locales/fold/nb-NO.ftl
+usr/share/locales/fold/pl.ftl
+usr/share/locales/fold/pt-BR.ftl
+usr/share/locales/fold/pt.ftl
+usr/share/locales/fold/ru.ftl
+usr/share/locales/fold/sv.ftl
+usr/share/locales/fold/tr.ftl
+usr/share/locales/fold/uk.ftl
+usr/share/locales/fold/vi.ftl
+usr/share/locales/fold/zh-Hans.ftl
+usr/share/locales/fold/zh-Hant.ftl
usr/share/locales/groups/
+usr/share/locales/groups/ar.ftl
+usr/share/locales/groups/ast.ftl
+usr/share/locales/groups/ca.ftl
+usr/share/locales/groups/cs.ftl
+usr/share/locales/groups/eo.ftl
+usr/share/locales/groups/es-ES.ftl
+usr/share/locales/groups/fi.ftl
usr/share/locales/groups/fr-FR.ftl
-usr/share/locales/hashsum/
-usr/share/locales/hashsum/fr-FR.ftl
+usr/share/locales/groups/he.ftl
+usr/share/locales/groups/hu.ftl
+usr/share/locales/groups/it.ftl
+usr/share/locales/groups/ja.ftl
+usr/share/locales/groups/kab.ftl
+usr/share/locales/groups/ko.ftl
+usr/share/locales/groups/nb-NO.ftl
+usr/share/locales/groups/pl.ftl
+usr/share/locales/groups/pt-BR.ftl
+usr/share/locales/groups/pt.ftl
+usr/share/locales/groups/ru.ftl
+usr/share/locales/groups/sv.ftl
+usr/share/locales/groups/tr.ftl
+usr/share/locales/groups/uk.ftl
+usr/share/locales/groups/vi.ftl
+usr/share/locales/groups/zh-Hans.ftl
+usr/share/locales/groups/zh-Hant.ftl
usr/share/locales/head/
+usr/share/locales/head/ar.ftl
+usr/share/locales/head/ast.ftl
+usr/share/locales/head/cs.ftl
+usr/share/locales/head/es-ES.ftl
+usr/share/locales/head/fi.ftl
usr/share/locales/head/fr-FR.ftl
+usr/share/locales/head/he.ftl
+usr/share/locales/head/it.ftl
+usr/share/locales/head/ja.ftl
+usr/share/locales/head/kab.ftl
+usr/share/locales/head/ko.ftl
+usr/share/locales/head/pl.ftl
+usr/share/locales/head/pt-BR.ftl
+usr/share/locales/head/pt.ftl
+usr/share/locales/head/ru.ftl
+usr/share/locales/head/sv.ftl
+usr/share/locales/head/tr.ftl
+usr/share/locales/head/uk.ftl
+usr/share/locales/head/vi.ftl
+usr/share/locales/head/zh-Hans.ftl
+usr/share/locales/head/zh-Hant.ftl
usr/share/locales/hostid/
+usr/share/locales/hostid/ar.ftl
+usr/share/locales/hostid/ast.ftl
+usr/share/locales/hostid/ca.ftl
+usr/share/locales/hostid/cs.ftl
+usr/share/locales/hostid/eo.ftl
+usr/share/locales/hostid/es-ES.ftl
+usr/share/locales/hostid/fi.ftl
+usr/share/locales/hostid/fr-FR.ftl
+usr/share/locales/hostid/he.ftl
+usr/share/locales/hostid/hu.ftl
+usr/share/locales/hostid/it.ftl
+usr/share/locales/hostid/ja.ftl
+usr/share/locales/hostid/kab.ftl
+usr/share/locales/hostid/ko.ftl
+usr/share/locales/hostid/nb-NO.ftl
+usr/share/locales/hostid/pl.ftl
+usr/share/locales/hostid/pt-BR.ftl
+usr/share/locales/hostid/pt.ftl
+usr/share/locales/hostid/ru.ftl
+usr/share/locales/hostid/sv.ftl
+usr/share/locales/hostid/tr.ftl
+usr/share/locales/hostid/uk.ftl
+usr/share/locales/hostid/vi.ftl
+usr/share/locales/hostid/zh-Hans.ftl
+usr/share/locales/hostid/zh-Hant.ftl
usr/share/locales/hostname/
+usr/share/locales/hostname/ar.ftl
+usr/share/locales/hostname/ast.ftl
+usr/share/locales/hostname/ca.ftl
+usr/share/locales/hostname/cs.ftl
+usr/share/locales/hostname/eo.ftl
+usr/share/locales/hostname/es-ES.ftl
+usr/share/locales/hostname/fi.ftl
usr/share/locales/hostname/fr-FR.ftl
+usr/share/locales/hostname/he.ftl
+usr/share/locales/hostname/it.ftl
+usr/share/locales/hostname/ja.ftl
+usr/share/locales/hostname/kab.ftl
+usr/share/locales/hostname/ko.ftl
+usr/share/locales/hostname/nb-NO.ftl
+usr/share/locales/hostname/pl.ftl
+usr/share/locales/hostname/pt-BR.ftl
+usr/share/locales/hostname/pt.ftl
+usr/share/locales/hostname/ru.ftl
+usr/share/locales/hostname/sv.ftl
+usr/share/locales/hostname/tr.ftl
+usr/share/locales/hostname/uk.ftl
+usr/share/locales/hostname/vi.ftl
+usr/share/locales/hostname/zh-Hans.ftl
+usr/share/locales/hostname/zh-Hant.ftl
usr/share/locales/id/
+usr/share/locales/id/ar.ftl
+usr/share/locales/id/ast.ftl
+usr/share/locales/id/es-ES.ftl
+usr/share/locales/id/fi.ftl
usr/share/locales/id/fr-FR.ftl
+usr/share/locales/id/he.ftl
+usr/share/locales/id/hu.ftl
+usr/share/locales/id/it.ftl
+usr/share/locales/id/ja.ftl
+usr/share/locales/id/kab.ftl
+usr/share/locales/id/pl.ftl
+usr/share/locales/id/pt-BR.ftl
+usr/share/locales/id/pt.ftl
+usr/share/locales/id/ru.ftl
+usr/share/locales/id/sv.ftl
+usr/share/locales/id/uk.ftl
+usr/share/locales/id/vi.ftl
+usr/share/locales/id/zh-Hans.ftl
+usr/share/locales/id/zh-Hant.ftl
usr/share/locales/install/
+usr/share/locales/install/ar.ftl
+usr/share/locales/install/ast.ftl
+usr/share/locales/install/ca.ftl
+usr/share/locales/install/cs.ftl
+usr/share/locales/install/eo.ftl
+usr/share/locales/install/es-ES.ftl
+usr/share/locales/install/fi.ftl
usr/share/locales/install/fr-FR.ftl
+usr/share/locales/install/he.ftl
+usr/share/locales/install/it.ftl
+usr/share/locales/install/ja.ftl
+usr/share/locales/install/kab.ftl
+usr/share/locales/install/ko.ftl
+usr/share/locales/install/nb-NO.ftl
+usr/share/locales/install/pl.ftl
+usr/share/locales/install/pt-BR.ftl
+usr/share/locales/install/pt.ftl
+usr/share/locales/install/ru.ftl
+usr/share/locales/install/sv.ftl
+usr/share/locales/install/tr.ftl
+usr/share/locales/install/uk.ftl
+usr/share/locales/install/vi.ftl
+usr/share/locales/install/zh-Hans.ftl
+usr/share/locales/install/zh-Hant.ftl
usr/share/locales/join/
+usr/share/locales/join/ar.ftl
+usr/share/locales/join/ast.ftl
+usr/share/locales/join/ca.ftl
+usr/share/locales/join/cs.ftl
+usr/share/locales/join/eo.ftl
+usr/share/locales/join/es-ES.ftl
+usr/share/locales/join/fi.ftl
usr/share/locales/join/fr-FR.ftl
+usr/share/locales/join/he.ftl
+usr/share/locales/join/it.ftl
+usr/share/locales/join/ja.ftl
+usr/share/locales/join/kab.ftl
+usr/share/locales/join/ko.ftl
+usr/share/locales/join/nb-NO.ftl
+usr/share/locales/join/pl.ftl
+usr/share/locales/join/pt-BR.ftl
+usr/share/locales/join/pt.ftl
+usr/share/locales/join/ru.ftl
+usr/share/locales/join/sv.ftl
+usr/share/locales/join/tr.ftl
+usr/share/locales/join/uk.ftl
+usr/share/locales/join/vi.ftl
+usr/share/locales/join/zh-Hans.ftl
+usr/share/locales/join/zh-Hant.ftl
usr/share/locales/kill/
+usr/share/locales/kill/ar.ftl
+usr/share/locales/kill/ast.ftl
+usr/share/locales/kill/cs.ftl
+usr/share/locales/kill/es-ES.ftl
+usr/share/locales/kill/fi.ftl
usr/share/locales/kill/fr-FR.ftl
+usr/share/locales/kill/he.ftl
+usr/share/locales/kill/it.ftl
+usr/share/locales/kill/ja.ftl
+usr/share/locales/kill/kab.ftl
+usr/share/locales/kill/pl.ftl
+usr/share/locales/kill/pt-BR.ftl
+usr/share/locales/kill/pt.ftl
+usr/share/locales/kill/ru.ftl
+usr/share/locales/kill/sv.ftl
+usr/share/locales/kill/uk.ftl
+usr/share/locales/kill/vi.ftl
+usr/share/locales/kill/zh-Hans.ftl
+usr/share/locales/kill/zh-Hant.ftl
usr/share/locales/link/
+usr/share/locales/link/ar.ftl
+usr/share/locales/link/ast.ftl
+usr/share/locales/link/ca.ftl
+usr/share/locales/link/cs.ftl
+usr/share/locales/link/eo.ftl
+usr/share/locales/link/es-ES.ftl
+usr/share/locales/link/fi.ftl
usr/share/locales/link/fr-FR.ftl
+usr/share/locales/link/he.ftl
+usr/share/locales/link/hu.ftl
+usr/share/locales/link/it.ftl
+usr/share/locales/link/ja.ftl
+usr/share/locales/link/kab.ftl
+usr/share/locales/link/ko.ftl
+usr/share/locales/link/nb-NO.ftl
+usr/share/locales/link/pl.ftl
+usr/share/locales/link/pt-BR.ftl
+usr/share/locales/link/pt.ftl
+usr/share/locales/link/ru.ftl
+usr/share/locales/link/sv.ftl
+usr/share/locales/link/tr.ftl
+usr/share/locales/link/uk.ftl
+usr/share/locales/link/vi.ftl
+usr/share/locales/link/zh-Hans.ftl
+usr/share/locales/link/zh-Hant.ftl
usr/share/locales/ln/
+usr/share/locales/ln/ar.ftl
+usr/share/locales/ln/ast.ftl
+usr/share/locales/ln/ca.ftl
+usr/share/locales/ln/cs.ftl
+usr/share/locales/ln/eo.ftl
+usr/share/locales/ln/es-ES.ftl
+usr/share/locales/ln/fi.ftl
usr/share/locales/ln/fr-FR.ftl
+usr/share/locales/ln/he.ftl
+usr/share/locales/ln/it.ftl
+usr/share/locales/ln/ja.ftl
+usr/share/locales/ln/kab.ftl
+usr/share/locales/ln/ko.ftl
+usr/share/locales/ln/nb-NO.ftl
+usr/share/locales/ln/pl.ftl
+usr/share/locales/ln/pt-BR.ftl
+usr/share/locales/ln/pt.ftl
+usr/share/locales/ln/ru.ftl
+usr/share/locales/ln/sv.ftl
+usr/share/locales/ln/tr.ftl
+usr/share/locales/ln/uk.ftl
+usr/share/locales/ln/vi.ftl
+usr/share/locales/ln/zh-Hans.ftl
+usr/share/locales/ln/zh-Hant.ftl
usr/share/locales/logname/
+usr/share/locales/logname/ar.ftl
+usr/share/locales/logname/ast.ftl
+usr/share/locales/logname/ca.ftl
+usr/share/locales/logname/cs.ftl
+usr/share/locales/logname/eo.ftl
+usr/share/locales/logname/es-ES.ftl
+usr/share/locales/logname/fi.ftl
usr/share/locales/logname/fr-FR.ftl
+usr/share/locales/logname/he.ftl
+usr/share/locales/logname/hu.ftl
+usr/share/locales/logname/it.ftl
+usr/share/locales/logname/ja.ftl
+usr/share/locales/logname/kab.ftl
+usr/share/locales/logname/ko.ftl
+usr/share/locales/logname/nb-NO.ftl
+usr/share/locales/logname/pl.ftl
+usr/share/locales/logname/pt-BR.ftl
+usr/share/locales/logname/pt.ftl
+usr/share/locales/logname/ru.ftl
+usr/share/locales/logname/sv.ftl
+usr/share/locales/logname/tr.ftl
+usr/share/locales/logname/uk.ftl
+usr/share/locales/logname/vi.ftl
+usr/share/locales/logname/zh-Hans.ftl
+usr/share/locales/logname/zh-Hant.ftl
usr/share/locales/ls/
+usr/share/locales/ls/ar.ftl
+usr/share/locales/ls/ast.ftl
+usr/share/locales/ls/ca.ftl
+usr/share/locales/ls/cs.ftl
+usr/share/locales/ls/de.ftl
+usr/share/locales/ls/eo.ftl
+usr/share/locales/ls/es-ES.ftl
+usr/share/locales/ls/fi.ftl
usr/share/locales/ls/fr-FR.ftl
+usr/share/locales/ls/he.ftl
+usr/share/locales/ls/it.ftl
+usr/share/locales/ls/ja.ftl
+usr/share/locales/ls/kab.ftl
+usr/share/locales/ls/ko.ftl
+usr/share/locales/ls/nb-NO.ftl
+usr/share/locales/ls/ne.ftl
+usr/share/locales/ls/pl.ftl
+usr/share/locales/ls/pt-BR.ftl
+usr/share/locales/ls/pt.ftl
+usr/share/locales/ls/ru.ftl
+usr/share/locales/ls/sv.ftl
+usr/share/locales/ls/tr.ftl
+usr/share/locales/ls/uk.ftl
+usr/share/locales/ls/vi.ftl
+usr/share/locales/ls/zh-Hans.ftl
+usr/share/locales/ls/zh-Hant.ftl
usr/share/locales/mkdir/
+usr/share/locales/mkdir/ar.ftl
+usr/share/locales/mkdir/ast.ftl
+usr/share/locales/mkdir/ca.ftl
+usr/share/locales/mkdir/cs.ftl
+usr/share/locales/mkdir/eo.ftl
+usr/share/locales/mkdir/es-ES.ftl
+usr/share/locales/mkdir/fi.ftl
usr/share/locales/mkdir/fr-FR.ftl
+usr/share/locales/mkdir/he.ftl
+usr/share/locales/mkdir/it.ftl
+usr/share/locales/mkdir/ja.ftl
+usr/share/locales/mkdir/kab.ftl
+usr/share/locales/mkdir/ko.ftl
+usr/share/locales/mkdir/nb-NO.ftl
+usr/share/locales/mkdir/pl.ftl
+usr/share/locales/mkdir/pt-BR.ftl
+usr/share/locales/mkdir/pt.ftl
+usr/share/locales/mkdir/ru.ftl
+usr/share/locales/mkdir/sv.ftl
+usr/share/locales/mkdir/tr.ftl
+usr/share/locales/mkdir/uk.ftl
+usr/share/locales/mkdir/vi.ftl
+usr/share/locales/mkdir/zh-Hans.ftl
+usr/share/locales/mkdir/zh-Hant.ftl
usr/share/locales/mkfifo/
+usr/share/locales/mkfifo/ar.ftl
+usr/share/locales/mkfifo/ast.ftl
+usr/share/locales/mkfifo/ca.ftl
+usr/share/locales/mkfifo/cs.ftl
+usr/share/locales/mkfifo/eo.ftl
+usr/share/locales/mkfifo/es-ES.ftl
+usr/share/locales/mkfifo/fi.ftl
usr/share/locales/mkfifo/fr-FR.ftl
+usr/share/locales/mkfifo/he.ftl
+usr/share/locales/mkfifo/it.ftl
+usr/share/locales/mkfifo/ja.ftl
+usr/share/locales/mkfifo/kab.ftl
+usr/share/locales/mkfifo/ko.ftl
+usr/share/locales/mkfifo/nb-NO.ftl
+usr/share/locales/mkfifo/pl.ftl
+usr/share/locales/mkfifo/pt-BR.ftl
+usr/share/locales/mkfifo/pt.ftl
+usr/share/locales/mkfifo/ru.ftl
+usr/share/locales/mkfifo/sv.ftl
+usr/share/locales/mkfifo/tr.ftl
+usr/share/locales/mkfifo/uk.ftl
+usr/share/locales/mkfifo/vi.ftl
+usr/share/locales/mkfifo/zh-Hans.ftl
+usr/share/locales/mkfifo/zh-Hant.ftl
usr/share/locales/mknod/
+usr/share/locales/mknod/ar.ftl
+usr/share/locales/mknod/ast.ftl
+usr/share/locales/mknod/ca.ftl
+usr/share/locales/mknod/cs.ftl
+usr/share/locales/mknod/eo.ftl
+usr/share/locales/mknod/es-ES.ftl
+usr/share/locales/mknod/fi.ftl
usr/share/locales/mknod/fr-FR.ftl
+usr/share/locales/mknod/he.ftl
+usr/share/locales/mknod/it.ftl
+usr/share/locales/mknod/ja.ftl
+usr/share/locales/mknod/kab.ftl
+usr/share/locales/mknod/ko.ftl
+usr/share/locales/mknod/nb-NO.ftl
+usr/share/locales/mknod/pl.ftl
+usr/share/locales/mknod/pt-BR.ftl
+usr/share/locales/mknod/pt.ftl
+usr/share/locales/mknod/ru.ftl
+usr/share/locales/mknod/sv.ftl
+usr/share/locales/mknod/tr.ftl
+usr/share/locales/mknod/uk.ftl
+usr/share/locales/mknod/vi.ftl
+usr/share/locales/mknod/zh-Hans.ftl
+usr/share/locales/mknod/zh-Hant.ftl
usr/share/locales/mktemp/
+usr/share/locales/mktemp/ar.ftl
+usr/share/locales/mktemp/ast.ftl
+usr/share/locales/mktemp/ca.ftl
+usr/share/locales/mktemp/cs.ftl
+usr/share/locales/mktemp/eo.ftl
+usr/share/locales/mktemp/es-ES.ftl
+usr/share/locales/mktemp/fi.ftl
usr/share/locales/mktemp/fr-FR.ftl
+usr/share/locales/mktemp/he.ftl
+usr/share/locales/mktemp/it.ftl
+usr/share/locales/mktemp/ja.ftl
+usr/share/locales/mktemp/kab.ftl
+usr/share/locales/mktemp/ko.ftl
+usr/share/locales/mktemp/nb-NO.ftl
+usr/share/locales/mktemp/pl.ftl
+usr/share/locales/mktemp/pt-BR.ftl
+usr/share/locales/mktemp/pt.ftl
+usr/share/locales/mktemp/ru.ftl
+usr/share/locales/mktemp/sv.ftl
+usr/share/locales/mktemp/tr.ftl
+usr/share/locales/mktemp/uk.ftl
+usr/share/locales/mktemp/vi.ftl
+usr/share/locales/mktemp/zh-Hans.ftl
+usr/share/locales/mktemp/zh-Hant.ftl
usr/share/locales/more/
+usr/share/locales/more/ar.ftl
+usr/share/locales/more/ast.ftl
+usr/share/locales/more/ca.ftl
+usr/share/locales/more/cs.ftl
+usr/share/locales/more/eo.ftl
+usr/share/locales/more/es-ES.ftl
+usr/share/locales/more/fi.ftl
usr/share/locales/more/fr-FR.ftl
+usr/share/locales/more/he.ftl
+usr/share/locales/more/it.ftl
+usr/share/locales/more/ja.ftl
+usr/share/locales/more/kab.ftl
+usr/share/locales/more/ko.ftl
+usr/share/locales/more/nb-NO.ftl
+usr/share/locales/more/pl.ftl
+usr/share/locales/more/pt-BR.ftl
+usr/share/locales/more/pt.ftl
+usr/share/locales/more/ru.ftl
+usr/share/locales/more/sv.ftl
+usr/share/locales/more/tr.ftl
+usr/share/locales/more/uk.ftl
+usr/share/locales/more/vi.ftl
+usr/share/locales/more/zh-Hans.ftl
+usr/share/locales/more/zh-Hant.ftl
usr/share/locales/mv/
+usr/share/locales/mv/ar.ftl
+usr/share/locales/mv/ast.ftl
+usr/share/locales/mv/cs.ftl
+usr/share/locales/mv/es-ES.ftl
+usr/share/locales/mv/fi.ftl
usr/share/locales/mv/fr-FR.ftl
+usr/share/locales/mv/he.ftl
+usr/share/locales/mv/it.ftl
+usr/share/locales/mv/ja.ftl
+usr/share/locales/mv/kab.ftl
+usr/share/locales/mv/ko.ftl
+usr/share/locales/mv/pl.ftl
+usr/share/locales/mv/pt-BR.ftl
+usr/share/locales/mv/pt.ftl
+usr/share/locales/mv/ru.ftl
+usr/share/locales/mv/sv.ftl
+usr/share/locales/mv/tr.ftl
+usr/share/locales/mv/uk.ftl
+usr/share/locales/mv/vi.ftl
+usr/share/locales/mv/zh-Hans.ftl
+usr/share/locales/mv/zh-Hant.ftl
usr/share/locales/nice/
+usr/share/locales/nice/ar.ftl
+usr/share/locales/nice/ast.ftl
+usr/share/locales/nice/ca.ftl
+usr/share/locales/nice/cs.ftl
+usr/share/locales/nice/eo.ftl
+usr/share/locales/nice/es-ES.ftl
+usr/share/locales/nice/fi.ftl
usr/share/locales/nice/fr-FR.ftl
+usr/share/locales/nice/he.ftl
+usr/share/locales/nice/it.ftl
+usr/share/locales/nice/ja.ftl
+usr/share/locales/nice/kab.ftl
+usr/share/locales/nice/ko.ftl
+usr/share/locales/nice/nb-NO.ftl
+usr/share/locales/nice/pl.ftl
+usr/share/locales/nice/pt-BR.ftl
+usr/share/locales/nice/pt.ftl
+usr/share/locales/nice/ru.ftl
+usr/share/locales/nice/sv.ftl
+usr/share/locales/nice/tr.ftl
+usr/share/locales/nice/uk.ftl
+usr/share/locales/nice/vi.ftl
+usr/share/locales/nice/zh-Hans.ftl
+usr/share/locales/nice/zh-Hant.ftl
usr/share/locales/nl/
+usr/share/locales/nl/ar.ftl
+usr/share/locales/nl/ast.ftl
+usr/share/locales/nl/ca.ftl
+usr/share/locales/nl/cs.ftl
+usr/share/locales/nl/eo.ftl
+usr/share/locales/nl/es-ES.ftl
+usr/share/locales/nl/fi.ftl
usr/share/locales/nl/fr-FR.ftl
+usr/share/locales/nl/he.ftl
+usr/share/locales/nl/it.ftl
+usr/share/locales/nl/ja.ftl
+usr/share/locales/nl/kab.ftl
+usr/share/locales/nl/ko.ftl
+usr/share/locales/nl/nb-NO.ftl
+usr/share/locales/nl/pl.ftl
+usr/share/locales/nl/pt-BR.ftl
+usr/share/locales/nl/pt.ftl
+usr/share/locales/nl/ru.ftl
+usr/share/locales/nl/sv.ftl
+usr/share/locales/nl/tr.ftl
+usr/share/locales/nl/uk.ftl
+usr/share/locales/nl/vi.ftl
+usr/share/locales/nl/zh-Hans.ftl
+usr/share/locales/nl/zh-Hant.ftl
usr/share/locales/nohup/
+usr/share/locales/nohup/ar.ftl
+usr/share/locales/nohup/ast.ftl
+usr/share/locales/nohup/cs.ftl
+usr/share/locales/nohup/es-ES.ftl
+usr/share/locales/nohup/fi.ftl
usr/share/locales/nohup/fr-FR.ftl
+usr/share/locales/nohup/he.ftl
+usr/share/locales/nohup/it.ftl
+usr/share/locales/nohup/ja.ftl
+usr/share/locales/nohup/kab.ftl
+usr/share/locales/nohup/pl.ftl
+usr/share/locales/nohup/pt-BR.ftl
+usr/share/locales/nohup/pt.ftl
+usr/share/locales/nohup/ru.ftl
+usr/share/locales/nohup/sv.ftl
+usr/share/locales/nohup/uk.ftl
+usr/share/locales/nohup/vi.ftl
+usr/share/locales/nohup/zh-Hans.ftl
+usr/share/locales/nohup/zh-Hant.ftl
usr/share/locales/nproc/
+usr/share/locales/nproc/ar.ftl
+usr/share/locales/nproc/ast.ftl
+usr/share/locales/nproc/ca.ftl
+usr/share/locales/nproc/cs.ftl
+usr/share/locales/nproc/eo.ftl
+usr/share/locales/nproc/es-ES.ftl
+usr/share/locales/nproc/fi.ftl
usr/share/locales/nproc/fr-FR.ftl
+usr/share/locales/nproc/he.ftl
+usr/share/locales/nproc/it.ftl
+usr/share/locales/nproc/ja.ftl
+usr/share/locales/nproc/kab.ftl
+usr/share/locales/nproc/ko.ftl
+usr/share/locales/nproc/nb-NO.ftl
+usr/share/locales/nproc/pl.ftl
+usr/share/locales/nproc/pt-BR.ftl
+usr/share/locales/nproc/pt.ftl
+usr/share/locales/nproc/ru.ftl
+usr/share/locales/nproc/sv.ftl
+usr/share/locales/nproc/tr.ftl
+usr/share/locales/nproc/uk.ftl
+usr/share/locales/nproc/vi.ftl
+usr/share/locales/nproc/zh-Hans.ftl
+usr/share/locales/nproc/zh-Hant.ftl
usr/share/locales/numfmt/
+usr/share/locales/numfmt/ar.ftl
+usr/share/locales/numfmt/ast.ftl
+usr/share/locales/numfmt/cs.ftl
+usr/share/locales/numfmt/es-ES.ftl
+usr/share/locales/numfmt/fi.ftl
usr/share/locales/numfmt/fr-FR.ftl
+usr/share/locales/numfmt/he.ftl
+usr/share/locales/numfmt/it.ftl
+usr/share/locales/numfmt/ja.ftl
+usr/share/locales/numfmt/kab.ftl
+usr/share/locales/numfmt/pl.ftl
+usr/share/locales/numfmt/pt-BR.ftl
+usr/share/locales/numfmt/pt.ftl
+usr/share/locales/numfmt/ru.ftl
+usr/share/locales/numfmt/sv.ftl
+usr/share/locales/numfmt/uk.ftl
+usr/share/locales/numfmt/vi.ftl
+usr/share/locales/numfmt/zh-Hans.ftl
+usr/share/locales/numfmt/zh-Hant.ftl
usr/share/locales/od/
+usr/share/locales/od/ar.ftl
+usr/share/locales/od/ast.ftl
+usr/share/locales/od/cs.ftl
+usr/share/locales/od/es-ES.ftl
+usr/share/locales/od/fi.ftl
usr/share/locales/od/fr-FR.ftl
+usr/share/locales/od/he.ftl
+usr/share/locales/od/it.ftl
+usr/share/locales/od/ja.ftl
+usr/share/locales/od/kab.ftl
+usr/share/locales/od/ko.ftl
+usr/share/locales/od/pl.ftl
+usr/share/locales/od/pt-BR.ftl
+usr/share/locales/od/pt.ftl
+usr/share/locales/od/ru.ftl
+usr/share/locales/od/sv.ftl
+usr/share/locales/od/tr.ftl
+usr/share/locales/od/uk.ftl
+usr/share/locales/od/vi.ftl
+usr/share/locales/od/zh-Hans.ftl
+usr/share/locales/od/zh-Hant.ftl
usr/share/locales/paste/
+usr/share/locales/paste/ar.ftl
+usr/share/locales/paste/ast.ftl
+usr/share/locales/paste/cs.ftl
+usr/share/locales/paste/es-ES.ftl
+usr/share/locales/paste/fi.ftl
usr/share/locales/paste/fr-FR.ftl
+usr/share/locales/paste/he.ftl
+usr/share/locales/paste/it.ftl
+usr/share/locales/paste/ja.ftl
+usr/share/locales/paste/kab.ftl
+usr/share/locales/paste/ko.ftl
+usr/share/locales/paste/pl.ftl
+usr/share/locales/paste/pt-BR.ftl
+usr/share/locales/paste/pt.ftl
+usr/share/locales/paste/ru.ftl
+usr/share/locales/paste/sv.ftl
+usr/share/locales/paste/tr.ftl
+usr/share/locales/paste/uk.ftl
+usr/share/locales/paste/vi.ftl
+usr/share/locales/paste/zh-Hans.ftl
+usr/share/locales/paste/zh-Hant.ftl
usr/share/locales/pathchk/
+usr/share/locales/pathchk/ar.ftl
+usr/share/locales/pathchk/ast.ftl
+usr/share/locales/pathchk/ca.ftl
+usr/share/locales/pathchk/cs.ftl
+usr/share/locales/pathchk/eo.ftl
+usr/share/locales/pathchk/es-ES.ftl
+usr/share/locales/pathchk/fi.ftl
usr/share/locales/pathchk/fr-FR.ftl
+usr/share/locales/pathchk/he.ftl
+usr/share/locales/pathchk/it.ftl
+usr/share/locales/pathchk/ja.ftl
+usr/share/locales/pathchk/kab.ftl
+usr/share/locales/pathchk/ko.ftl
+usr/share/locales/pathchk/nb-NO.ftl
+usr/share/locales/pathchk/pl.ftl
+usr/share/locales/pathchk/pt-BR.ftl
+usr/share/locales/pathchk/pt.ftl
+usr/share/locales/pathchk/ru.ftl
+usr/share/locales/pathchk/sv.ftl
+usr/share/locales/pathchk/tr.ftl
+usr/share/locales/pathchk/uk.ftl
+usr/share/locales/pathchk/vi.ftl
+usr/share/locales/pathchk/zh-Hans.ftl
+usr/share/locales/pathchk/zh-Hant.ftl
usr/share/locales/pinky/
+usr/share/locales/pinky/ar.ftl
+usr/share/locales/pinky/ast.ftl
+usr/share/locales/pinky/ca.ftl
+usr/share/locales/pinky/cs.ftl
+usr/share/locales/pinky/eo.ftl
+usr/share/locales/pinky/es-ES.ftl
+usr/share/locales/pinky/fi.ftl
usr/share/locales/pinky/fr-FR.ftl
+usr/share/locales/pinky/he.ftl
+usr/share/locales/pinky/it.ftl
+usr/share/locales/pinky/ja.ftl
+usr/share/locales/pinky/kab.ftl
+usr/share/locales/pinky/ko.ftl
+usr/share/locales/pinky/nb-NO.ftl
+usr/share/locales/pinky/pl.ftl
+usr/share/locales/pinky/pt-BR.ftl
+usr/share/locales/pinky/pt.ftl
+usr/share/locales/pinky/ru.ftl
+usr/share/locales/pinky/sv.ftl
+usr/share/locales/pinky/tr.ftl
+usr/share/locales/pinky/uk.ftl
+usr/share/locales/pinky/vi.ftl
+usr/share/locales/pinky/zh-Hans.ftl
+usr/share/locales/pinky/zh-Hant.ftl
usr/share/locales/pr/
+usr/share/locales/pr/ar.ftl
+usr/share/locales/pr/ast.ftl
+usr/share/locales/pr/ca.ftl
+usr/share/locales/pr/cs.ftl
+usr/share/locales/pr/eo.ftl
+usr/share/locales/pr/es-ES.ftl
+usr/share/locales/pr/fi.ftl
usr/share/locales/pr/fr-FR.ftl
+usr/share/locales/pr/he.ftl
+usr/share/locales/pr/it.ftl
+usr/share/locales/pr/ja.ftl
+usr/share/locales/pr/kab.ftl
+usr/share/locales/pr/ko.ftl
+usr/share/locales/pr/nb-NO.ftl
+usr/share/locales/pr/pl.ftl
+usr/share/locales/pr/pt-BR.ftl
+usr/share/locales/pr/pt.ftl
+usr/share/locales/pr/ru.ftl
+usr/share/locales/pr/sv.ftl
+usr/share/locales/pr/tr.ftl
+usr/share/locales/pr/uk.ftl
+usr/share/locales/pr/vi.ftl
+usr/share/locales/pr/zh-Hans.ftl
+usr/share/locales/pr/zh-Hant.ftl
usr/share/locales/printenv/
+usr/share/locales/printenv/ar.ftl
+usr/share/locales/printenv/ast.ftl
+usr/share/locales/printenv/cs.ftl
+usr/share/locales/printenv/es-ES.ftl
+usr/share/locales/printenv/fi.ftl
usr/share/locales/printenv/fr-FR.ftl
+usr/share/locales/printenv/he.ftl
+usr/share/locales/printenv/hu.ftl
+usr/share/locales/printenv/it.ftl
+usr/share/locales/printenv/ja.ftl
+usr/share/locales/printenv/kab.ftl
+usr/share/locales/printenv/pl.ftl
+usr/share/locales/printenv/pt-BR.ftl
+usr/share/locales/printenv/pt.ftl
+usr/share/locales/printenv/ru.ftl
+usr/share/locales/printenv/sv.ftl
+usr/share/locales/printenv/uk.ftl
+usr/share/locales/printenv/vi.ftl
+usr/share/locales/printenv/zh-Hans.ftl
+usr/share/locales/printenv/zh-Hant.ftl
usr/share/locales/printf/
+usr/share/locales/printf/ar.ftl
+usr/share/locales/printf/ast.ftl
+usr/share/locales/printf/ca.ftl
+usr/share/locales/printf/cs.ftl
+usr/share/locales/printf/eo.ftl
+usr/share/locales/printf/es-ES.ftl
+usr/share/locales/printf/fi.ftl
usr/share/locales/printf/fr-FR.ftl
+usr/share/locales/printf/he.ftl
+usr/share/locales/printf/it.ftl
+usr/share/locales/printf/ja.ftl
+usr/share/locales/printf/kab.ftl
+usr/share/locales/printf/ko.ftl
+usr/share/locales/printf/nb-NO.ftl
+usr/share/locales/printf/pl.ftl
+usr/share/locales/printf/pt-BR.ftl
+usr/share/locales/printf/pt.ftl
+usr/share/locales/printf/ru.ftl
+usr/share/locales/printf/sv.ftl
+usr/share/locales/printf/tr.ftl
+usr/share/locales/printf/uk.ftl
+usr/share/locales/printf/vi.ftl
+usr/share/locales/printf/zh-Hans.ftl
+usr/share/locales/printf/zh-Hant.ftl
usr/share/locales/ptx/
+usr/share/locales/ptx/ar.ftl
+usr/share/locales/ptx/ast.ftl
+usr/share/locales/ptx/ca.ftl
+usr/share/locales/ptx/cs.ftl
+usr/share/locales/ptx/eo.ftl
+usr/share/locales/ptx/es-ES.ftl
+usr/share/locales/ptx/fi.ftl
usr/share/locales/ptx/fr-FR.ftl
+usr/share/locales/ptx/he.ftl
+usr/share/locales/ptx/it.ftl
+usr/share/locales/ptx/ja.ftl
+usr/share/locales/ptx/kab.ftl
+usr/share/locales/ptx/ko.ftl
+usr/share/locales/ptx/nb-NO.ftl
+usr/share/locales/ptx/pl.ftl
+usr/share/locales/ptx/pt-BR.ftl
+usr/share/locales/ptx/pt.ftl
+usr/share/locales/ptx/ru.ftl
+usr/share/locales/ptx/sv.ftl
+usr/share/locales/ptx/tr.ftl
+usr/share/locales/ptx/uk.ftl
+usr/share/locales/ptx/vi.ftl
+usr/share/locales/ptx/zh-Hans.ftl
+usr/share/locales/ptx/zh-Hant.ftl
usr/share/locales/pwd/
+usr/share/locales/pwd/ar.ftl
+usr/share/locales/pwd/ast.ftl
+usr/share/locales/pwd/ca.ftl
+usr/share/locales/pwd/cs.ftl
+usr/share/locales/pwd/eo.ftl
+usr/share/locales/pwd/es-ES.ftl
+usr/share/locales/pwd/fi.ftl
usr/share/locales/pwd/fr-FR.ftl
+usr/share/locales/pwd/he.ftl
+usr/share/locales/pwd/it.ftl
+usr/share/locales/pwd/ja.ftl
+usr/share/locales/pwd/kab.ftl
+usr/share/locales/pwd/ko.ftl
+usr/share/locales/pwd/nb-NO.ftl
+usr/share/locales/pwd/pl.ftl
+usr/share/locales/pwd/pt-BR.ftl
+usr/share/locales/pwd/pt.ftl
+usr/share/locales/pwd/ru.ftl
+usr/share/locales/pwd/sv.ftl
+usr/share/locales/pwd/tr.ftl
+usr/share/locales/pwd/uk.ftl
+usr/share/locales/pwd/vi.ftl
+usr/share/locales/pwd/zh-Hans.ftl
+usr/share/locales/pwd/zh-Hant.ftl
usr/share/locales/readlink/
+usr/share/locales/readlink/ar.ftl
+usr/share/locales/readlink/ast.ftl
+usr/share/locales/readlink/ca.ftl
+usr/share/locales/readlink/cs.ftl
+usr/share/locales/readlink/eo.ftl
+usr/share/locales/readlink/es-ES.ftl
+usr/share/locales/readlink/fi.ftl
usr/share/locales/readlink/fr-FR.ftl
+usr/share/locales/readlink/he.ftl
+usr/share/locales/readlink/it.ftl
+usr/share/locales/readlink/ja.ftl
+usr/share/locales/readlink/kab.ftl
+usr/share/locales/readlink/ko.ftl
+usr/share/locales/readlink/nb-NO.ftl
+usr/share/locales/readlink/pl.ftl
+usr/share/locales/readlink/pt-BR.ftl
+usr/share/locales/readlink/pt.ftl
+usr/share/locales/readlink/ru.ftl
+usr/share/locales/readlink/sv.ftl
+usr/share/locales/readlink/tr.ftl
+usr/share/locales/readlink/uk.ftl
+usr/share/locales/readlink/vi.ftl
+usr/share/locales/readlink/zh-Hans.ftl
+usr/share/locales/readlink/zh-Hant.ftl
usr/share/locales/realpath/
+usr/share/locales/realpath/ar.ftl
+usr/share/locales/realpath/ast.ftl
+usr/share/locales/realpath/ca.ftl
+usr/share/locales/realpath/cs.ftl
+usr/share/locales/realpath/eo.ftl
+usr/share/locales/realpath/es-ES.ftl
+usr/share/locales/realpath/fi.ftl
usr/share/locales/realpath/fr-FR.ftl
+usr/share/locales/realpath/he.ftl
+usr/share/locales/realpath/it.ftl
+usr/share/locales/realpath/ja.ftl
+usr/share/locales/realpath/kab.ftl
+usr/share/locales/realpath/ko.ftl
+usr/share/locales/realpath/nb-NO.ftl
+usr/share/locales/realpath/pl.ftl
+usr/share/locales/realpath/pt-BR.ftl
+usr/share/locales/realpath/pt.ftl
+usr/share/locales/realpath/ru.ftl
+usr/share/locales/realpath/sv.ftl
+usr/share/locales/realpath/tr.ftl
+usr/share/locales/realpath/uk.ftl
+usr/share/locales/realpath/vi.ftl
+usr/share/locales/realpath/zh-Hans.ftl
+usr/share/locales/realpath/zh-Hant.ftl
usr/share/locales/rm/
+usr/share/locales/rm/ar.ftl
+usr/share/locales/rm/ast.ftl
+usr/share/locales/rm/ca.ftl
+usr/share/locales/rm/cs.ftl
+usr/share/locales/rm/eo.ftl
+usr/share/locales/rm/es-ES.ftl
+usr/share/locales/rm/fi.ftl
usr/share/locales/rm/fr-FR.ftl
+usr/share/locales/rm/he.ftl
+usr/share/locales/rm/it.ftl
+usr/share/locales/rm/ja.ftl
+usr/share/locales/rm/kab.ftl
+usr/share/locales/rm/ko.ftl
+usr/share/locales/rm/nb-NO.ftl
+usr/share/locales/rm/pl.ftl
+usr/share/locales/rm/pt-BR.ftl
+usr/share/locales/rm/pt.ftl
+usr/share/locales/rm/ru.ftl
+usr/share/locales/rm/sv.ftl
+usr/share/locales/rm/tr.ftl
+usr/share/locales/rm/uk.ftl
+usr/share/locales/rm/vi.ftl
+usr/share/locales/rm/zh-Hans.ftl
+usr/share/locales/rm/zh-Hant.ftl
usr/share/locales/rmdir/
+usr/share/locales/rmdir/ar.ftl
+usr/share/locales/rmdir/ast.ftl
+usr/share/locales/rmdir/ca.ftl
+usr/share/locales/rmdir/cs.ftl
+usr/share/locales/rmdir/eo.ftl
+usr/share/locales/rmdir/es-ES.ftl
+usr/share/locales/rmdir/fi.ftl
usr/share/locales/rmdir/fr-FR.ftl
+usr/share/locales/rmdir/he.ftl
+usr/share/locales/rmdir/it.ftl
+usr/share/locales/rmdir/ja.ftl
+usr/share/locales/rmdir/kab.ftl
+usr/share/locales/rmdir/ko.ftl
+usr/share/locales/rmdir/nb-NO.ftl
+usr/share/locales/rmdir/pl.ftl
+usr/share/locales/rmdir/pt-BR.ftl
+usr/share/locales/rmdir/pt.ftl
+usr/share/locales/rmdir/ru.ftl
+usr/share/locales/rmdir/sv.ftl
+usr/share/locales/rmdir/tr.ftl
+usr/share/locales/rmdir/uk.ftl
+usr/share/locales/rmdir/vi.ftl
+usr/share/locales/rmdir/zh-Hans.ftl
+usr/share/locales/rmdir/zh-Hant.ftl
usr/share/locales/runcon/
+usr/share/locales/runcon/ar.ftl
+usr/share/locales/runcon/ast.ftl
+usr/share/locales/runcon/cs.ftl
+usr/share/locales/runcon/es-ES.ftl
+usr/share/locales/runcon/fi.ftl
usr/share/locales/runcon/fr-FR.ftl
+usr/share/locales/runcon/he.ftl
+usr/share/locales/runcon/it.ftl
+usr/share/locales/runcon/ja.ftl
+usr/share/locales/runcon/kab.ftl
+usr/share/locales/runcon/ko.ftl
+usr/share/locales/runcon/pl.ftl
+usr/share/locales/runcon/pt-BR.ftl
+usr/share/locales/runcon/pt.ftl
+usr/share/locales/runcon/ru.ftl
+usr/share/locales/runcon/sv.ftl
+usr/share/locales/runcon/tr.ftl
+usr/share/locales/runcon/uk.ftl
+usr/share/locales/runcon/vi.ftl
+usr/share/locales/runcon/zh-Hans.ftl
+usr/share/locales/runcon/zh-Hant.ftl
usr/share/locales/seq/
+usr/share/locales/seq/ar.ftl
+usr/share/locales/seq/ast.ftl
+usr/share/locales/seq/ca.ftl
+usr/share/locales/seq/cs.ftl
+usr/share/locales/seq/eo.ftl
+usr/share/locales/seq/es-ES.ftl
+usr/share/locales/seq/fi.ftl
usr/share/locales/seq/fr-FR.ftl
+usr/share/locales/seq/he.ftl
+usr/share/locales/seq/it.ftl
+usr/share/locales/seq/ja.ftl
+usr/share/locales/seq/kab.ftl
+usr/share/locales/seq/ko.ftl
+usr/share/locales/seq/nb-NO.ftl
+usr/share/locales/seq/pl.ftl
+usr/share/locales/seq/pt-BR.ftl
+usr/share/locales/seq/pt.ftl
+usr/share/locales/seq/ru.ftl
+usr/share/locales/seq/sv.ftl
+usr/share/locales/seq/tr.ftl
+usr/share/locales/seq/uk.ftl
+usr/share/locales/seq/vi.ftl
+usr/share/locales/seq/zh-Hans.ftl
+usr/share/locales/seq/zh-Hant.ftl
usr/share/locales/shred/
+usr/share/locales/shred/ar.ftl
+usr/share/locales/shred/ast.ftl
+usr/share/locales/shred/ca.ftl
+usr/share/locales/shred/cs.ftl
+usr/share/locales/shred/eo.ftl
+usr/share/locales/shred/es-ES.ftl
+usr/share/locales/shred/fi.ftl
usr/share/locales/shred/fr-FR.ftl
+usr/share/locales/shred/he.ftl
+usr/share/locales/shred/it.ftl
+usr/share/locales/shred/ja.ftl
+usr/share/locales/shred/kab.ftl
+usr/share/locales/shred/ko.ftl
+usr/share/locales/shred/nb-NO.ftl
+usr/share/locales/shred/pl.ftl
+usr/share/locales/shred/pt-BR.ftl
+usr/share/locales/shred/pt.ftl
+usr/share/locales/shred/ru.ftl
+usr/share/locales/shred/sv.ftl
+usr/share/locales/shred/tr.ftl
+usr/share/locales/shred/uk.ftl
+usr/share/locales/shred/vi.ftl
+usr/share/locales/shred/zh-Hans.ftl
+usr/share/locales/shred/zh-Hant.ftl
usr/share/locales/shuf/
+usr/share/locales/shuf/ar.ftl
+usr/share/locales/shuf/ast.ftl
+usr/share/locales/shuf/ca.ftl
+usr/share/locales/shuf/cs.ftl
+usr/share/locales/shuf/eo.ftl
+usr/share/locales/shuf/es-ES.ftl
+usr/share/locales/shuf/fi.ftl
usr/share/locales/shuf/fr-FR.ftl
+usr/share/locales/shuf/he.ftl
+usr/share/locales/shuf/it.ftl
+usr/share/locales/shuf/ja.ftl
+usr/share/locales/shuf/kab.ftl
+usr/share/locales/shuf/ko.ftl
+usr/share/locales/shuf/nb-NO.ftl
+usr/share/locales/shuf/pl.ftl
+usr/share/locales/shuf/pt-BR.ftl
+usr/share/locales/shuf/pt.ftl
+usr/share/locales/shuf/ru.ftl
+usr/share/locales/shuf/sv.ftl
+usr/share/locales/shuf/tr.ftl
+usr/share/locales/shuf/uk.ftl
+usr/share/locales/shuf/vi.ftl
+usr/share/locales/shuf/zh-Hans.ftl
+usr/share/locales/shuf/zh-Hant.ftl
usr/share/locales/sleep/
+usr/share/locales/sleep/ar.ftl
+usr/share/locales/sleep/ast.ftl
+usr/share/locales/sleep/ca.ftl
+usr/share/locales/sleep/cs.ftl
+usr/share/locales/sleep/eo.ftl
+usr/share/locales/sleep/es-ES.ftl
+usr/share/locales/sleep/fi.ftl
usr/share/locales/sleep/fr-FR.ftl
+usr/share/locales/sleep/he.ftl
+usr/share/locales/sleep/hu.ftl
+usr/share/locales/sleep/it.ftl
+usr/share/locales/sleep/ja.ftl
+usr/share/locales/sleep/kab.ftl
+usr/share/locales/sleep/ko.ftl
+usr/share/locales/sleep/nb-NO.ftl
+usr/share/locales/sleep/pl.ftl
+usr/share/locales/sleep/pt-BR.ftl
+usr/share/locales/sleep/pt.ftl
+usr/share/locales/sleep/ru.ftl
+usr/share/locales/sleep/sv.ftl
+usr/share/locales/sleep/tr.ftl
+usr/share/locales/sleep/uk.ftl
+usr/share/locales/sleep/vi.ftl
+usr/share/locales/sleep/zh-Hans.ftl
+usr/share/locales/sleep/zh-Hant.ftl
usr/share/locales/sort/
+usr/share/locales/sort/ar.ftl
+usr/share/locales/sort/ast.ftl
+usr/share/locales/sort/ca.ftl
+usr/share/locales/sort/cs.ftl
+usr/share/locales/sort/eo.ftl
+usr/share/locales/sort/es-ES.ftl
+usr/share/locales/sort/fi.ftl
usr/share/locales/sort/fr-FR.ftl
+usr/share/locales/sort/he.ftl
+usr/share/locales/sort/it.ftl
+usr/share/locales/sort/ja.ftl
+usr/share/locales/sort/kab.ftl
+usr/share/locales/sort/ko.ftl
+usr/share/locales/sort/nb-NO.ftl
+usr/share/locales/sort/pl.ftl
+usr/share/locales/sort/pt-BR.ftl
+usr/share/locales/sort/pt.ftl
+usr/share/locales/sort/ru.ftl
+usr/share/locales/sort/sv.ftl
+usr/share/locales/sort/tr.ftl
+usr/share/locales/sort/uk.ftl
+usr/share/locales/sort/vi.ftl
+usr/share/locales/sort/zh-Hans.ftl
+usr/share/locales/sort/zh-Hant.ftl
usr/share/locales/split/
+usr/share/locales/split/ar.ftl
+usr/share/locales/split/ast.ftl
+usr/share/locales/split/ca.ftl
+usr/share/locales/split/cs.ftl
+usr/share/locales/split/eo.ftl
+usr/share/locales/split/es-ES.ftl
+usr/share/locales/split/fi.ftl
usr/share/locales/split/fr-FR.ftl
+usr/share/locales/split/he.ftl
+usr/share/locales/split/it.ftl
+usr/share/locales/split/ja.ftl
+usr/share/locales/split/kab.ftl
+usr/share/locales/split/ko.ftl
+usr/share/locales/split/nb-NO.ftl
+usr/share/locales/split/pl.ftl
+usr/share/locales/split/pt-BR.ftl
+usr/share/locales/split/pt.ftl
+usr/share/locales/split/ru.ftl
+usr/share/locales/split/sv.ftl
+usr/share/locales/split/tr.ftl
+usr/share/locales/split/uk.ftl
+usr/share/locales/split/vi.ftl
+usr/share/locales/split/zh-Hans.ftl
+usr/share/locales/split/zh-Hant.ftl
usr/share/locales/stat/
+usr/share/locales/stat/ar.ftl
+usr/share/locales/stat/ast.ftl
+usr/share/locales/stat/cs.ftl
+usr/share/locales/stat/eo.ftl
+usr/share/locales/stat/es-ES.ftl
+usr/share/locales/stat/fi.ftl
usr/share/locales/stat/fr-FR.ftl
+usr/share/locales/stat/he.ftl
+usr/share/locales/stat/it.ftl
+usr/share/locales/stat/ja.ftl
+usr/share/locales/stat/kab.ftl
+usr/share/locales/stat/ko.ftl
+usr/share/locales/stat/nb-NO.ftl
+usr/share/locales/stat/pl.ftl
+usr/share/locales/stat/pt-BR.ftl
+usr/share/locales/stat/pt.ftl
+usr/share/locales/stat/ru.ftl
+usr/share/locales/stat/sv.ftl
+usr/share/locales/stat/tr.ftl
+usr/share/locales/stat/uk.ftl
+usr/share/locales/stat/vi.ftl
+usr/share/locales/stat/zh-Hans.ftl
+usr/share/locales/stat/zh-Hant.ftl
usr/share/locales/stdbuf/
+usr/share/locales/stdbuf/ar.ftl
+usr/share/locales/stdbuf/ast.ftl
+usr/share/locales/stdbuf/ca.ftl
+usr/share/locales/stdbuf/cs.ftl
+usr/share/locales/stdbuf/eo.ftl
+usr/share/locales/stdbuf/es-ES.ftl
+usr/share/locales/stdbuf/fi.ftl
usr/share/locales/stdbuf/fr-FR.ftl
+usr/share/locales/stdbuf/he.ftl
+usr/share/locales/stdbuf/it.ftl
+usr/share/locales/stdbuf/ja.ftl
+usr/share/locales/stdbuf/kab.ftl
+usr/share/locales/stdbuf/ko.ftl
+usr/share/locales/stdbuf/nb-NO.ftl
+usr/share/locales/stdbuf/pl.ftl
+usr/share/locales/stdbuf/pt-BR.ftl
+usr/share/locales/stdbuf/pt.ftl
+usr/share/locales/stdbuf/ru.ftl
+usr/share/locales/stdbuf/sv.ftl
+usr/share/locales/stdbuf/tr.ftl
+usr/share/locales/stdbuf/uk.ftl
+usr/share/locales/stdbuf/vi.ftl
+usr/share/locales/stdbuf/zh-Hans.ftl
+usr/share/locales/stdbuf/zh-Hant.ftl
usr/share/locales/stty/
+usr/share/locales/stty/ar.ftl
+usr/share/locales/stty/ast.ftl
+usr/share/locales/stty/ca.ftl
+usr/share/locales/stty/cs.ftl
+usr/share/locales/stty/eo.ftl
+usr/share/locales/stty/es-ES.ftl
+usr/share/locales/stty/fi.ftl
usr/share/locales/stty/fr-FR.ftl
+usr/share/locales/stty/he.ftl
+usr/share/locales/stty/it.ftl
+usr/share/locales/stty/ja.ftl
+usr/share/locales/stty/kab.ftl
+usr/share/locales/stty/ko.ftl
+usr/share/locales/stty/nb-NO.ftl
+usr/share/locales/stty/pl.ftl
+usr/share/locales/stty/pt-BR.ftl
+usr/share/locales/stty/pt.ftl
+usr/share/locales/stty/ru.ftl
+usr/share/locales/stty/sv.ftl
+usr/share/locales/stty/tr.ftl
+usr/share/locales/stty/uk.ftl
+usr/share/locales/stty/vi.ftl
+usr/share/locales/stty/zh-Hans.ftl
+usr/share/locales/stty/zh-Hant.ftl
usr/share/locales/sum/
+usr/share/locales/sum/ar.ftl
+usr/share/locales/sum/ast.ftl
+usr/share/locales/sum/ca.ftl
+usr/share/locales/sum/cs.ftl
+usr/share/locales/sum/eo.ftl
+usr/share/locales/sum/es-ES.ftl
+usr/share/locales/sum/fi.ftl
usr/share/locales/sum/fr-FR.ftl
+usr/share/locales/sum/he.ftl
+usr/share/locales/sum/it.ftl
+usr/share/locales/sum/ja.ftl
+usr/share/locales/sum/kab.ftl
+usr/share/locales/sum/ko.ftl
+usr/share/locales/sum/nb-NO.ftl
+usr/share/locales/sum/pl.ftl
+usr/share/locales/sum/pt-BR.ftl
+usr/share/locales/sum/pt.ftl
+usr/share/locales/sum/ru.ftl
+usr/share/locales/sum/sv.ftl
+usr/share/locales/sum/tr.ftl
+usr/share/locales/sum/uk.ftl
+usr/share/locales/sum/vi.ftl
+usr/share/locales/sum/zh-Hans.ftl
+usr/share/locales/sum/zh-Hant.ftl
usr/share/locales/sync/
+usr/share/locales/sync/ar.ftl
+usr/share/locales/sync/ast.ftl
+usr/share/locales/sync/ca.ftl
+usr/share/locales/sync/cs.ftl
+usr/share/locales/sync/eo.ftl
+usr/share/locales/sync/es-ES.ftl
+usr/share/locales/sync/fi.ftl
usr/share/locales/sync/fr-FR.ftl
+usr/share/locales/sync/he.ftl
+usr/share/locales/sync/it.ftl
+usr/share/locales/sync/ja.ftl
+usr/share/locales/sync/kab.ftl
+usr/share/locales/sync/ko.ftl
+usr/share/locales/sync/nb-NO.ftl
+usr/share/locales/sync/pl.ftl
+usr/share/locales/sync/pt-BR.ftl
+usr/share/locales/sync/pt.ftl
+usr/share/locales/sync/ru.ftl
+usr/share/locales/sync/sv.ftl
+usr/share/locales/sync/tr.ftl
+usr/share/locales/sync/vi.ftl
+usr/share/locales/sync/zh-Hans.ftl
+usr/share/locales/sync/zh-Hant.ftl
usr/share/locales/tac/
+usr/share/locales/tac/ar.ftl
+usr/share/locales/tac/ast.ftl
+usr/share/locales/tac/ca.ftl
+usr/share/locales/tac/cs.ftl
+usr/share/locales/tac/eo.ftl
+usr/share/locales/tac/es-ES.ftl
+usr/share/locales/tac/fi.ftl
usr/share/locales/tac/fr-FR.ftl
+usr/share/locales/tac/he.ftl
+usr/share/locales/tac/it.ftl
+usr/share/locales/tac/ja.ftl
+usr/share/locales/tac/kab.ftl
+usr/share/locales/tac/ko.ftl
+usr/share/locales/tac/nb-NO.ftl
+usr/share/locales/tac/pl.ftl
+usr/share/locales/tac/pt-BR.ftl
+usr/share/locales/tac/pt.ftl
+usr/share/locales/tac/ru.ftl
+usr/share/locales/tac/sv.ftl
+usr/share/locales/tac/tr.ftl
+usr/share/locales/tac/vi.ftl
+usr/share/locales/tac/zh-Hans.ftl
+usr/share/locales/tac/zh-Hant.ftl
usr/share/locales/tail/
+usr/share/locales/tail/ar.ftl
+usr/share/locales/tail/ast.ftl
+usr/share/locales/tail/ca.ftl
+usr/share/locales/tail/cs.ftl
+usr/share/locales/tail/eo.ftl
+usr/share/locales/tail/es-ES.ftl
+usr/share/locales/tail/fi.ftl
usr/share/locales/tail/fr-FR.ftl
+usr/share/locales/tail/he.ftl
+usr/share/locales/tail/it.ftl
+usr/share/locales/tail/ja.ftl
+usr/share/locales/tail/kab.ftl
+usr/share/locales/tail/ko.ftl
+usr/share/locales/tail/nb-NO.ftl
+usr/share/locales/tail/pl.ftl
+usr/share/locales/tail/pt-BR.ftl
+usr/share/locales/tail/pt.ftl
+usr/share/locales/tail/ru.ftl
+usr/share/locales/tail/sv.ftl
+usr/share/locales/tail/tr.ftl
+usr/share/locales/tail/vi.ftl
+usr/share/locales/tail/zh-Hans.ftl
+usr/share/locales/tail/zh-Hant.ftl
usr/share/locales/tee/
+usr/share/locales/tee/ar.ftl
+usr/share/locales/tee/ast.ftl
+usr/share/locales/tee/ca.ftl
+usr/share/locales/tee/cs.ftl
+usr/share/locales/tee/eo.ftl
+usr/share/locales/tee/es-ES.ftl
+usr/share/locales/tee/fi.ftl
usr/share/locales/tee/fr-FR.ftl
+usr/share/locales/tee/he.ftl
+usr/share/locales/tee/it.ftl
+usr/share/locales/tee/ja.ftl
+usr/share/locales/tee/kab.ftl
+usr/share/locales/tee/ko.ftl
+usr/share/locales/tee/nb-NO.ftl
+usr/share/locales/tee/pl.ftl
+usr/share/locales/tee/pt-BR.ftl
+usr/share/locales/tee/pt.ftl
+usr/share/locales/tee/ru.ftl
+usr/share/locales/tee/sv.ftl
+usr/share/locales/tee/tr.ftl
+usr/share/locales/tee/vi.ftl
+usr/share/locales/tee/zh-Hans.ftl
+usr/share/locales/tee/zh-Hant.ftl
usr/share/locales/test/
+usr/share/locales/test/ar.ftl
+usr/share/locales/test/ast.ftl
+usr/share/locales/test/cs.ftl
+usr/share/locales/test/es-ES.ftl
+usr/share/locales/test/fi.ftl
usr/share/locales/test/fr-FR.ftl
+usr/share/locales/test/he.ftl
+usr/share/locales/test/it.ftl
+usr/share/locales/test/ja.ftl
+usr/share/locales/test/kab.ftl
+usr/share/locales/test/pl.ftl
+usr/share/locales/test/pt-BR.ftl
+usr/share/locales/test/pt.ftl
+usr/share/locales/test/ru.ftl
+usr/share/locales/test/sv.ftl
+usr/share/locales/test/vi.ftl
+usr/share/locales/test/zh-Hans.ftl
+usr/share/locales/test/zh-Hant.ftl
usr/share/locales/timeout/
+usr/share/locales/timeout/ar.ftl
+usr/share/locales/timeout/ast.ftl
+usr/share/locales/timeout/ca.ftl
+usr/share/locales/timeout/cs.ftl
+usr/share/locales/timeout/eo.ftl
+usr/share/locales/timeout/es-ES.ftl
+usr/share/locales/timeout/fi.ftl
usr/share/locales/timeout/fr-FR.ftl
+usr/share/locales/timeout/he.ftl
+usr/share/locales/timeout/it.ftl
+usr/share/locales/timeout/ja.ftl
+usr/share/locales/timeout/kab.ftl
+usr/share/locales/timeout/ko.ftl
+usr/share/locales/timeout/nb-NO.ftl
+usr/share/locales/timeout/pl.ftl
+usr/share/locales/timeout/pt-BR.ftl
+usr/share/locales/timeout/pt.ftl
+usr/share/locales/timeout/ru.ftl
+usr/share/locales/timeout/sv.ftl
+usr/share/locales/timeout/tr.ftl
+usr/share/locales/timeout/vi.ftl
+usr/share/locales/timeout/zh-Hans.ftl
+usr/share/locales/timeout/zh-Hant.ftl
usr/share/locales/touch/
+usr/share/locales/touch/ar.ftl
+usr/share/locales/touch/ast.ftl
+usr/share/locales/touch/ca.ftl
+usr/share/locales/touch/cs.ftl
+usr/share/locales/touch/eo.ftl
+usr/share/locales/touch/es-ES.ftl
+usr/share/locales/touch/fi.ftl
usr/share/locales/touch/fr-FR.ftl
+usr/share/locales/touch/he.ftl
+usr/share/locales/touch/it.ftl
+usr/share/locales/touch/ja.ftl
+usr/share/locales/touch/kab.ftl
+usr/share/locales/touch/ko.ftl
+usr/share/locales/touch/nb-NO.ftl
+usr/share/locales/touch/pl.ftl
+usr/share/locales/touch/pt-BR.ftl
+usr/share/locales/touch/pt.ftl
+usr/share/locales/touch/ru.ftl
+usr/share/locales/touch/sv.ftl
+usr/share/locales/touch/tr.ftl
+usr/share/locales/touch/vi.ftl
+usr/share/locales/touch/zh-Hans.ftl
+usr/share/locales/touch/zh-Hant.ftl
usr/share/locales/tr/
+usr/share/locales/tr/ar.ftl
+usr/share/locales/tr/ast.ftl
+usr/share/locales/tr/ca.ftl
+usr/share/locales/tr/cs.ftl
+usr/share/locales/tr/eo.ftl
+usr/share/locales/tr/es-ES.ftl
+usr/share/locales/tr/fi.ftl
usr/share/locales/tr/fr-FR.ftl
+usr/share/locales/tr/he.ftl
+usr/share/locales/tr/it.ftl
+usr/share/locales/tr/ja.ftl
+usr/share/locales/tr/kab.ftl
+usr/share/locales/tr/ko.ftl
+usr/share/locales/tr/nb-NO.ftl
+usr/share/locales/tr/pl.ftl
+usr/share/locales/tr/pt-BR.ftl
+usr/share/locales/tr/pt.ftl
+usr/share/locales/tr/ru.ftl
+usr/share/locales/tr/sv.ftl
+usr/share/locales/tr/tr.ftl
+usr/share/locales/tr/vi.ftl
+usr/share/locales/tr/zh-Hans.ftl
+usr/share/locales/tr/zh-Hant.ftl
usr/share/locales/true/
+usr/share/locales/true/ar.ftl
+usr/share/locales/true/ast.ftl
+usr/share/locales/true/cs.ftl
+usr/share/locales/true/es-ES.ftl
+usr/share/locales/true/fi.ftl
usr/share/locales/true/fr-FR.ftl
+usr/share/locales/true/he.ftl
+usr/share/locales/true/hu.ftl
+usr/share/locales/true/it.ftl
+usr/share/locales/true/ja.ftl
+usr/share/locales/true/kab.ftl
+usr/share/locales/true/pl.ftl
+usr/share/locales/true/pt-BR.ftl
+usr/share/locales/true/pt.ftl
+usr/share/locales/true/ru.ftl
+usr/share/locales/true/sv.ftl
+usr/share/locales/true/vi.ftl
+usr/share/locales/true/zh-Hans.ftl
+usr/share/locales/true/zh-Hant.ftl
usr/share/locales/truncate/
+usr/share/locales/truncate/es-ES.ftl
usr/share/locales/truncate/fr-FR.ftl
usr/share/locales/tsort/
+usr/share/locales/tsort/ar.ftl
+usr/share/locales/tsort/ast.ftl
+usr/share/locales/tsort/ca.ftl
+usr/share/locales/tsort/cs.ftl
+usr/share/locales/tsort/eo.ftl
+usr/share/locales/tsort/es-ES.ftl
+usr/share/locales/tsort/fi.ftl
usr/share/locales/tsort/fr-FR.ftl
+usr/share/locales/tsort/he.ftl
+usr/share/locales/tsort/hu.ftl
+usr/share/locales/tsort/it.ftl
+usr/share/locales/tsort/ja.ftl
+usr/share/locales/tsort/kab.ftl
+usr/share/locales/tsort/ko.ftl
+usr/share/locales/tsort/nb-NO.ftl
+usr/share/locales/tsort/pl.ftl
+usr/share/locales/tsort/pt-BR.ftl
+usr/share/locales/tsort/pt.ftl
+usr/share/locales/tsort/ru.ftl
+usr/share/locales/tsort/sv.ftl
+usr/share/locales/tsort/tr.ftl
+usr/share/locales/tsort/vi.ftl
+usr/share/locales/tsort/zh-Hans.ftl
+usr/share/locales/tsort/zh-Hant.ftl
usr/share/locales/tty/
+usr/share/locales/tty/es-ES.ftl
usr/share/locales/tty/fr-FR.ftl
usr/share/locales/uname/
+usr/share/locales/uname/ar.ftl
+usr/share/locales/uname/ast.ftl
+usr/share/locales/uname/cs.ftl
+usr/share/locales/uname/es-ES.ftl
+usr/share/locales/uname/fi.ftl
usr/share/locales/uname/fr-FR.ftl
+usr/share/locales/uname/he.ftl
+usr/share/locales/uname/it.ftl
+usr/share/locales/uname/ja.ftl
+usr/share/locales/uname/kab.ftl
+usr/share/locales/uname/ko.ftl
+usr/share/locales/uname/pl.ftl
+usr/share/locales/uname/pt-BR.ftl
+usr/share/locales/uname/pt.ftl
+usr/share/locales/uname/ru.ftl
+usr/share/locales/uname/sv.ftl
+usr/share/locales/uname/tr.ftl
+usr/share/locales/uname/vi.ftl
+usr/share/locales/uname/zh-Hans.ftl
+usr/share/locales/uname/zh-Hant.ftl
usr/share/locales/unexpand/
+usr/share/locales/unexpand/ar.ftl
+usr/share/locales/unexpand/ast.ftl
+usr/share/locales/unexpand/ca.ftl
+usr/share/locales/unexpand/cs.ftl
+usr/share/locales/unexpand/eo.ftl
+usr/share/locales/unexpand/es-ES.ftl
+usr/share/locales/unexpand/fi.ftl
usr/share/locales/unexpand/fr-FR.ftl
+usr/share/locales/unexpand/he.ftl
+usr/share/locales/unexpand/it.ftl
+usr/share/locales/unexpand/ja.ftl
+usr/share/locales/unexpand/kab.ftl
+usr/share/locales/unexpand/ko.ftl
+usr/share/locales/unexpand/nb-NO.ftl
+usr/share/locales/unexpand/pl.ftl
+usr/share/locales/unexpand/pt-BR.ftl
+usr/share/locales/unexpand/pt.ftl
+usr/share/locales/unexpand/ru.ftl
+usr/share/locales/unexpand/sv.ftl
+usr/share/locales/unexpand/tr.ftl
+usr/share/locales/unexpand/vi.ftl
+usr/share/locales/unexpand/zh-Hans.ftl
+usr/share/locales/unexpand/zh-Hant.ftl
usr/share/locales/uniq/
+usr/share/locales/uniq/ar.ftl
+usr/share/locales/uniq/ast.ftl
+usr/share/locales/uniq/ca.ftl
+usr/share/locales/uniq/cs.ftl
+usr/share/locales/uniq/eo.ftl
+usr/share/locales/uniq/es-ES.ftl
+usr/share/locales/uniq/fi.ftl
usr/share/locales/uniq/fr-FR.ftl
+usr/share/locales/uniq/he.ftl
+usr/share/locales/uniq/it.ftl
+usr/share/locales/uniq/ja.ftl
+usr/share/locales/uniq/kab.ftl
+usr/share/locales/uniq/ko.ftl
+usr/share/locales/uniq/nb-NO.ftl
+usr/share/locales/uniq/pl.ftl
+usr/share/locales/uniq/pt-BR.ftl
+usr/share/locales/uniq/pt.ftl
+usr/share/locales/uniq/ru.ftl
+usr/share/locales/uniq/sv.ftl
+usr/share/locales/uniq/tr.ftl
+usr/share/locales/uniq/vi.ftl
+usr/share/locales/uniq/zh-Hans.ftl
+usr/share/locales/uniq/zh-Hant.ftl
usr/share/locales/unlink/
+usr/share/locales/unlink/ar.ftl
+usr/share/locales/unlink/ast.ftl
+usr/share/locales/unlink/ca.ftl
+usr/share/locales/unlink/cs.ftl
+usr/share/locales/unlink/eo.ftl
+usr/share/locales/unlink/es-ES.ftl
+usr/share/locales/unlink/fi.ftl
usr/share/locales/unlink/fr-FR.ftl
+usr/share/locales/unlink/he.ftl
+usr/share/locales/unlink/hu.ftl
+usr/share/locales/unlink/it.ftl
+usr/share/locales/unlink/ja.ftl
+usr/share/locales/unlink/kab.ftl
+usr/share/locales/unlink/ko.ftl
+usr/share/locales/unlink/nb-NO.ftl
+usr/share/locales/unlink/pl.ftl
+usr/share/locales/unlink/pt-BR.ftl
+usr/share/locales/unlink/pt.ftl
+usr/share/locales/unlink/ru.ftl
+usr/share/locales/unlink/sv.ftl
+usr/share/locales/unlink/tr.ftl
+usr/share/locales/unlink/vi.ftl
+usr/share/locales/unlink/zh-Hans.ftl
+usr/share/locales/unlink/zh-Hant.ftl
usr/share/locales/uptime/
+usr/share/locales/uptime/ar.ftl
+usr/share/locales/uptime/ast.ftl
+usr/share/locales/uptime/ca.ftl
+usr/share/locales/uptime/cs.ftl
+usr/share/locales/uptime/eo.ftl
+usr/share/locales/uptime/es-ES.ftl
+usr/share/locales/uptime/fi.ftl
usr/share/locales/uptime/fr-FR.ftl
+usr/share/locales/uptime/he.ftl
+usr/share/locales/uptime/it.ftl
+usr/share/locales/uptime/ja.ftl
+usr/share/locales/uptime/kab.ftl
+usr/share/locales/uptime/ko.ftl
+usr/share/locales/uptime/nb-NO.ftl
+usr/share/locales/uptime/pl.ftl
+usr/share/locales/uptime/pt-BR.ftl
+usr/share/locales/uptime/pt.ftl
+usr/share/locales/uptime/ru.ftl
+usr/share/locales/uptime/sv.ftl
+usr/share/locales/uptime/tr.ftl
+usr/share/locales/uptime/vi.ftl
+usr/share/locales/uptime/zh-Hans.ftl
+usr/share/locales/uptime/zh-Hant.ftl
usr/share/locales/users/
+usr/share/locales/users/ar.ftl
+usr/share/locales/users/ast.ftl
+usr/share/locales/users/ca.ftl
+usr/share/locales/users/cs.ftl
+usr/share/locales/users/eo.ftl
+usr/share/locales/users/es-ES.ftl
+usr/share/locales/users/fi.ftl
usr/share/locales/users/fr-FR.ftl
+usr/share/locales/users/he.ftl
+usr/share/locales/users/hu.ftl
+usr/share/locales/users/it.ftl
+usr/share/locales/users/ja.ftl
+usr/share/locales/users/kab.ftl
+usr/share/locales/users/ko.ftl
+usr/share/locales/users/nb-NO.ftl
+usr/share/locales/users/pl.ftl
+usr/share/locales/users/pt-BR.ftl
+usr/share/locales/users/pt.ftl
+usr/share/locales/users/ru.ftl
+usr/share/locales/users/sv.ftl
+usr/share/locales/users/tr.ftl
+usr/share/locales/users/vi.ftl
+usr/share/locales/users/zh-Hans.ftl
+usr/share/locales/users/zh-Hant.ftl
+usr/share/locales/uucore/
+usr/share/locales/uucore/en-US.ftl
+usr/share/locales/uucore/es-ES.ftl
+usr/share/locales/uucore/fr-FR.ftl
usr/share/locales/vdir/
+usr/share/locales/vdir/ar.ftl
+usr/share/locales/vdir/ast.ftl
+usr/share/locales/vdir/ca.ftl
+usr/share/locales/vdir/cs.ftl
+usr/share/locales/vdir/eo.ftl
+usr/share/locales/vdir/es-ES.ftl
+usr/share/locales/vdir/fi.ftl
+usr/share/locales/vdir/fr-FR.ftl
+usr/share/locales/vdir/he.ftl
+usr/share/locales/vdir/hu.ftl
+usr/share/locales/vdir/it.ftl
+usr/share/locales/vdir/ja.ftl
+usr/share/locales/vdir/kab.ftl
+usr/share/locales/vdir/ko.ftl
+usr/share/locales/vdir/nb-NO.ftl
+usr/share/locales/vdir/pl.ftl
+usr/share/locales/vdir/pt-BR.ftl
+usr/share/locales/vdir/pt.ftl
+usr/share/locales/vdir/ru.ftl
+usr/share/locales/vdir/sv.ftl
+usr/share/locales/vdir/tr.ftl
+usr/share/locales/vdir/vi.ftl
+usr/share/locales/vdir/zh-Hans.ftl
+usr/share/locales/vdir/zh-Hant.ftl
usr/share/locales/wc/
+usr/share/locales/wc/ar.ftl
+usr/share/locales/wc/ast.ftl
+usr/share/locales/wc/ca.ftl
+usr/share/locales/wc/cs.ftl
+usr/share/locales/wc/eo.ftl
+usr/share/locales/wc/es-ES.ftl
+usr/share/locales/wc/fi.ftl
usr/share/locales/wc/fr-FR.ftl
+usr/share/locales/wc/he.ftl
+usr/share/locales/wc/it.ftl
+usr/share/locales/wc/ja.ftl
+usr/share/locales/wc/kab.ftl
+usr/share/locales/wc/ko.ftl
+usr/share/locales/wc/nb-NO.ftl
+usr/share/locales/wc/pl.ftl
+usr/share/locales/wc/pt-BR.ftl
+usr/share/locales/wc/pt.ftl
+usr/share/locales/wc/ru.ftl
+usr/share/locales/wc/sv.ftl
+usr/share/locales/wc/tr.ftl
+usr/share/locales/wc/vi.ftl
+usr/share/locales/wc/zh-Hans.ftl
+usr/share/locales/wc/zh-Hant.ftl
usr/share/locales/who/
+usr/share/locales/who/ar.ftl
+usr/share/locales/who/ast.ftl
+usr/share/locales/who/ca.ftl
+usr/share/locales/who/cs.ftl
+usr/share/locales/who/eo.ftl
+usr/share/locales/who/es-ES.ftl
+usr/share/locales/who/fi.ftl
usr/share/locales/who/fr-FR.ftl
+usr/share/locales/who/he.ftl
+usr/share/locales/who/it.ftl
+usr/share/locales/who/ja.ftl
+usr/share/locales/who/kab.ftl
+usr/share/locales/who/ko.ftl
+usr/share/locales/who/nb-NO.ftl
+usr/share/locales/who/pl.ftl
+usr/share/locales/who/pt-BR.ftl
+usr/share/locales/who/pt.ftl
+usr/share/locales/who/ru.ftl
+usr/share/locales/who/sv.ftl
+usr/share/locales/who/tr.ftl
+usr/share/locales/who/vi.ftl
+usr/share/locales/who/zh-Hans.ftl
+usr/share/locales/who/zh-Hant.ftl
usr/share/locales/whoami/
+usr/share/locales/whoami/ar.ftl
+usr/share/locales/whoami/ast.ftl
+usr/share/locales/whoami/ca.ftl
+usr/share/locales/whoami/cs.ftl
+usr/share/locales/whoami/eo.ftl
+usr/share/locales/whoami/es-ES.ftl
+usr/share/locales/whoami/fa.ftl
+usr/share/locales/whoami/fi.ftl
usr/share/locales/whoami/fr-FR.ftl
+usr/share/locales/whoami/he.ftl
+usr/share/locales/whoami/hu.ftl
+usr/share/locales/whoami/it.ftl
+usr/share/locales/whoami/ja.ftl
+usr/share/locales/whoami/kab.ftl
+usr/share/locales/whoami/ko.ftl
+usr/share/locales/whoami/nb-NO.ftl
+usr/share/locales/whoami/pl.ftl
+usr/share/locales/whoami/pt-BR.ftl
+usr/share/locales/whoami/pt.ftl
+usr/share/locales/whoami/ru.ftl
+usr/share/locales/whoami/sv.ftl
+usr/share/locales/whoami/tr.ftl
+usr/share/locales/whoami/vi.ftl
+usr/share/locales/whoami/zh-Hans.ftl
+usr/share/locales/whoami/zh-Hant.ftl
usr/share/locales/yes/
+usr/share/locales/yes/ar.ftl
+usr/share/locales/yes/ast.ftl
+usr/share/locales/yes/bn.ftl
+usr/share/locales/yes/ca.ftl
+usr/share/locales/yes/cs.ftl
+usr/share/locales/yes/eo.ftl
+usr/share/locales/yes/es-ES.ftl
+usr/share/locales/yes/fa-IR.ftl
+usr/share/locales/yes/fi.ftl
usr/share/locales/yes/fr-FR.ftl
+usr/share/locales/yes/he.ftl
+usr/share/locales/yes/hi.ftl
+usr/share/locales/yes/hu.ftl
+usr/share/locales/yes/it.ftl
+usr/share/locales/yes/ja.ftl
+usr/share/locales/yes/kab.ftl
+usr/share/locales/yes/ko.ftl
+usr/share/locales/yes/nb-NO.ftl
+usr/share/locales/yes/ne.ftl
+usr/share/locales/yes/pl.ftl
+usr/share/locales/yes/pt-BR.ftl
+usr/share/locales/yes/pt.ftl
+usr/share/locales/yes/ru.ftl
+usr/share/locales/yes/sv.ftl
+usr/share/locales/yes/tr.ftl
+usr/share/locales/yes/vi.ftl
+usr/share/locales/yes/zh-Hans.ftl
+usr/share/locales/yes/zh-Hant.ftl
usr/share/man/
usr/share/man/de/
usr/share/man/de/man1/
@@ -3449,6 +5626,7 @@ usr/share/zsh/
usr/share/zsh/site-functions/
usr/share/zsh/site-functions/rust-coreutils/
usr/share/zsh/site-functions/rust-coreutils/_rust-arch
+usr/share/zsh/site-functions/rust-coreutils/_rust-b2sum
usr/share/zsh/site-functions/rust-coreutils/_rust-base32
usr/share/zsh/site-functions/rust-coreutils/_rust-base64
usr/share/zsh/site-functions/rust-coreutils/_rust-basename
@@ -3481,7 +5659,6 @@ usr/share/zsh/site-functions/rust-coreutils/_rust-false
usr/share/zsh/site-functions/rust-coreutils/_rust-fmt
usr/share/zsh/site-functions/rust-coreutils/_rust-fold
usr/share/zsh/site-functions/rust-coreutils/_rust-groups
-usr/share/zsh/site-functions/rust-coreutils/_rust-hashsum
usr/share/zsh/site-functions/rust-coreutils/_rust-head
usr/share/zsh/site-functions/rust-coreutils/_rust-hostid
usr/share/zsh/site-functions/rust-coreutils/_rust-hostname
@@ -3493,6 +5670,7 @@ usr/share/zsh/site-functions/rust-coreutils/_rust-link
usr/share/zsh/site-functions/rust-coreutils/_rust-ln
usr/share/zsh/site-functions/rust-coreutils/_rust-logname
usr/share/zsh/site-functions/rust-coreutils/_rust-ls
+usr/share/zsh/site-functions/rust-coreutils/_rust-md5sum
usr/share/zsh/site-functions/rust-coreutils/_rust-mkdir
usr/share/zsh/site-functions/rust-coreutils/_rust-mkfifo
usr/share/zsh/site-functions/rust-coreutils/_rust-mknod
@@ -3519,6 +5697,11 @@ usr/share/zsh/site-functions/rust-coreutils/_rust-rm
usr/share/zsh/site-functions/rust-coreutils/_rust-rmdir
usr/share/zsh/site-functions/rust-coreutils/_rust-runcon
usr/share/zsh/site-functions/rust-coreutils/_rust-seq
+usr/share/zsh/site-functions/rust-coreutils/_rust-sha1sum
+usr/share/zsh/site-functions/rust-coreutils/_rust-sha224sum
+usr/share/zsh/site-functions/rust-coreutils/_rust-sha256sum
+usr/share/zsh/site-functions/rust-coreutils/_rust-sha384sum
+usr/share/zsh/site-functions/rust-coreutils/_rust-sha512sum
usr/share/zsh/site-functions/rust-coreutils/_rust-shred
usr/share/zsh/site-functions/rust-coreutils/_rust-shuf
usr/share/zsh/site-functions/rust-coreutils/_rust-sleep
@@ -3648,6 +5831,7 @@ var/lib/dpkg/info/dpkg.list
var/lib/dpkg/info/dpkg.md5sums
var/lib/dpkg/info/dpkg.postinst
var/lib/dpkg/info/dpkg.postrm
+var/lib/dpkg/info/dpkg.prerm
var/lib/dpkg/info/e2fsprogs.conffiles
var/lib/dpkg/info/e2fsprogs.list
var/lib/dpkg/info/e2fsprogs.md5sums
@@ -3658,8 +5842,8 @@ var/lib/dpkg/info/e2fsprogs.prerm
var/lib/dpkg/info/findutils.list
var/lib/dpkg/info/findutils.md5sums
var/lib/dpkg/info/format
-var/lib/dpkg/info/gcc-15-base:amd64.list
-var/lib/dpkg/info/gcc-15-base:amd64.md5sums
+var/lib/dpkg/info/gcc-16-base:amd64.list
+var/lib/dpkg/info/gcc-16-base:amd64.md5sums
var/lib/dpkg/info/gnu-coreutils.list
var/lib/dpkg/info/gnu-coreutils.md5sums
var/lib/dpkg/info/gpgv.list
@@ -4008,6 +6192,9 @@ var/lib/pam/password
var/lib/pam/seen
var/lib/pam/session
var/lib/pam/session-noninteractive
+var/lib/pebble/
+var/lib/pebble/default/
+var/lib/pebble/default/layers/
var/lib/shells.state
var/lib/systemd/
var/lib/systemd/deb-systemd-helper-enabled/
diff --git a/ubuntu_devel/blobs/sha256/3f8b2f35783e4f17e635643c3b9a28f61d865c4853bbcc849e003c0ec3fe5f4a 'tar -t' b/ubuntu_devel/blobs/sha256/3f8b2f35783e4f17e635643c3b9a28f61d865c4853bbcc849e003c0ec3fe5f4a 'tar -t'
new file mode 100644
index 0000000..4d95234
--- /dev/null
+++ b/ubuntu_devel/blobs/sha256/3f8b2f35783e4f17e635643c3b9a28f61d865c4853bbcc849e003c0ec3fe5f4a 'tar -t'
@@ -0,0 +1,2 @@
+.rock/
+.rock/metadata.yaml
diff --git a/ubuntu_devel/blobs/sha256/5339b96ffdb0469fda2cf828246814291d106ab4f6424e34158a8b24aae5d792 b/ubuntu_devel/blobs/sha256/5339b96ffdb0469fda2cf828246814291d106ab4f6424e34158a8b24aae5d792
new file mode 100644
index 0000000..2470930
--- /dev/null
+++ b/ubuntu_devel/blobs/sha256/5339b96ffdb0469fda2cf828246814291d106ab4f6424e34158a8b24aae5d792
@@ -0,0 +1,61 @@
+{
+ "architecture": "amd64",
+ "config": {
+ "Cmd": [
+ "/bin/bash"
+ ],
+ "Env": [
+ "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
+ ],
+ "Labels": {
+ "org.opencontainers.image.created": "2026-03-12T19:56:20.276582+00:00",
+ "org.opencontainers.image.description": "The Ubuntu container image maintained by Canonical\n\nUbuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things.\nIt is the world's most popular operating system across public clouds and OpenStack clouds.\nIt is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale.\nFast, secure and simple, Ubuntu powers millions of PCs worldwide.\n",
+ "org.opencontainers.image.title": "ubuntu",
+ "org.opencontainers.image.version": "26.04"
+ }
+ },
+ "created": "2026-03-12T19:55:11.233475646Z",
+ "history": [
+ {
+ "created": "2026-03-12T19:56:19.650854761Z",
+ "created_by": "umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-76cf8b7096278e896cac0fa322ab7d79/images/ubuntu:rockcraft-base /home/buildd/rockcraft-ubuntu-76cf8b7096278e896cac0fa322ab7d79/images/.temp_layer.4403.tar --tag 26.04"
+ },
+ {
+ "created": "2026-03-12T19:56:20.249353433Z",
+ "created_by": "umoci config",
+ "empty_layer": true
+ },
+ {
+ "created": "2026-03-12T19:56:20.260204784Z",
+ "created_by": "umoci config",
+ "empty_layer": true
+ },
+ {
+ "created": "2026-03-12T19:56:20.270342263Z",
+ "created_by": "umoci config",
+ "empty_layer": true
+ },
+ {
+ "created": "2026-03-12T19:56:20.281722155Z",
+ "created_by": "umoci config",
+ "empty_layer": true
+ },
+ {
+ "created": "2026-03-12T19:56:20.292058985Z",
+ "created_by": "umoci config",
+ "empty_layer": true
+ },
+ {
+ "created": "2026-03-12T19:56:20.305649648Z",
+ "created_by": "umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-76cf8b7096278e896cac0fa322ab7d79/images/ubuntu:26.04 /home/buildd/rockcraft-ubuntu-76cf8b7096278e896cac0fa322ab7d79/images/.temp_layer.control_data.4403.tar"
+ }
+ ],
+ "os": "linux",
+ "rootfs": {
+ "diff_ids": [
+ "sha256:bdb5b2b843baa3721bf81797c45ccb536127cb70bdbac47b93fa6bf99f1da66c",
+ "sha256:87eaf3beb50b5d6e84b55eb2a2d919dd30cdbae1957681f44da13efe71b90690"
+ ],
+ "type": "layers"
+ }
+}
diff --git a/ubuntu_devel/blobs/sha256/c17e4720a74c1343e53c68e832fbf425d0c75751f4ccc25f0452c865c15aa288 b/ubuntu_devel/blobs/sha256/c17e4720a74c1343e53c68e832fbf425d0c75751f4ccc25f0452c865c15aa288
new file mode 100644
index 0000000..f39046a
--- /dev/null
+++ b/ubuntu_devel/blobs/sha256/c17e4720a74c1343e53c68e832fbf425d0c75751f4ccc25f0452c865c15aa288
@@ -0,0 +1,33 @@
+{
+ "annotations": {
+ "org.opencontainers.image.created": "2026-03-12T19:56:20.276582+00:00",
+ "org.opencontainers.image.description": "The Ubuntu container image maintained by Canonical\n\nUbuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things.\nIt is the world's most popular operating system across public clouds and OpenStack clouds.\nIt is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale.\nFast, secure and simple, Ubuntu powers millions of PCs worldwide.\n",
+ "org.opencontainers.image.title": "ubuntu",
+ "org.opencontainers.image.version": "26.04"
+ },
+ "config": {
+ "digest": "sha256:5339b96ffdb0469fda2cf828246814291d106ab4f6424e34158a8b24aae5d792",
+ "mediaType": "application/vnd.oci.image.config.v1+json",
+ "size": 2078
+ },
+ "layers": [
+ {
+ "annotations": {
+ "ci.umo.uncompressed_blob_size": "111523840"
+ },
+ "digest": "sha256:353172d2243ba412db836ee33433b5bf98b7b5e712d6a842def962f77707b920",
+ "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip",
+ "size": 41855369
+ },
+ {
+ "annotations": {
+ "ci.umo.uncompressed_blob_size": "10240"
+ },
+ "digest": "sha256:3f8b2f35783e4f17e635643c3b9a28f61d865c4853bbcc849e003c0ec3fe5f4a",
+ "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip",
+ "size": 407
+ }
+ ],
+ "mediaType": "application/vnd.oci.image.manifest.v1+json",
+ "schemaVersion": 2
+}
diff --git a/ubuntu_devel/blobs/sha256/ec90772179318f186810ff22a3e4e1c5de8a97f4f1d56652c558761220128b2b b/ubuntu_devel/blobs/sha256/ec90772179318f186810ff22a3e4e1c5de8a97f4f1d56652c558761220128b2b
deleted file mode 100644
index a9f2370..0000000
diff --git a/ubuntu_devel/index.json b/ubuntu_devel/index.json
index 6151be0..8b046cd 100644
--- a/ubuntu_devel/index.json
+++ b/ubuntu_devel/index.json
@@ -1,9 +1,9 @@
{
"manifests": [
{
- "digest": "sha256:37a0633b900e99d0937986022b4b4018908e1361704425313cc1c348bebd7230",
+ "digest": "sha256:c17e4720a74c1343e53c68e832fbf425d0c75751f4ccc25f0452c865c15aa288",
"mediaType": "application/vnd.oci.image.manifest.v1+json",
- "size": 424
+ "size": 1392
}
],
"schemaVersion": 2
diff --git a/ubuntu_jammy/blobs/sha256/8ea4cbcf3a26ffe08ba1fa548831bc318beb1a689e921b70c0c47cac329e96fd b/ubuntu_jammy/blobs/sha256/2a8380840c2fad0be3c1132c6950a8989b560f572b2a17bc7907b5288ee71780
similarity index 68%
rename from ubuntu_jammy/blobs/sha256/8ea4cbcf3a26ffe08ba1fa548831bc318beb1a689e921b70c0c47cac329e96fd
rename to ubuntu_jammy/blobs/sha256/2a8380840c2fad0be3c1132c6950a8989b560f572b2a17bc7907b5288ee71780
index 27e6d47..489dfbf 100644
--- a/ubuntu_jammy/blobs/sha256/8ea4cbcf3a26ffe08ba1fa548831bc318beb1a689e921b70c0c47cac329e96fd
+++ b/ubuntu_jammy/blobs/sha256/2a8380840c2fad0be3c1132c6950a8989b560f572b2a17bc7907b5288ee71780
@@ -13,7 +13,7 @@
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
],
"Hostname": "",
- "Image": "sha256:a8bbdb697b57176cbdd2ba2d4b8dfda8e600d9b6610d323c8866fa24f9017cbd",
+ "Image": "sha256:41269375808ee4e732ffa1f7bba937ca3ebc57b6aa92356964345d8efc276822",
"Labels": {
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.version": "22.04"
@@ -26,7 +26,7 @@
"Volumes": null,
"WorkingDir": ""
},
- "container": "fd3f4266747770d2a13e76969eb6a40bbb514df0efbad739071c0e9522dead93",
+ "container": "fc5f6d396073a7e6e141f48891be9b3d3cf727112e2109dcf3338678de824627",
"container_config": {
"AttachStderr": false,
"AttachStdin": false,
@@ -42,8 +42,8 @@
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
],
- "Hostname": "fd3f42667477",
- "Image": "sha256:a8bbdb697b57176cbdd2ba2d4b8dfda8e600d9b6610d323c8866fa24f9017cbd",
+ "Hostname": "fc5f6d396073",
+ "Image": "sha256:41269375808ee4e732ffa1f7bba937ca3ebc57b6aa92356964345d8efc276822",
"Labels": {
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.version": "22.04"
@@ -56,35 +56,35 @@
"Volumes": null,
"WorkingDir": ""
},
- "created": "2026-02-10T17:40:09.53215364Z",
+ "created": "2026-02-24T07:30:08.982985306Z",
"docker_version": "26.1.3",
"history": [
{
- "created": "2026-02-10T17:40:06.784916222Z",
+ "created": "2026-02-24T07:30:06.252641839Z",
"created_by": "/bin/sh -c #(nop) ARG RELEASE",
"empty_layer": true
},
{
- "created": "2026-02-10T17:40:06.833163186Z",
+ "created": "2026-02-24T07:30:06.29671819Z",
"created_by": "/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH",
"empty_layer": true
},
{
- "created": "2026-02-10T17:40:06.875605404Z",
+ "created": "2026-02-24T07:30:06.323053646Z",
"created_by": "/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu",
"empty_layer": true
},
{
- "created": "2026-02-10T17:40:06.903799821Z",
+ "created": "2026-02-24T07:30:06.350505862Z",
"created_by": "/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04",
"empty_layer": true
},
{
- "created": "2026-02-10T17:40:09.053421328Z",
- "created_by": "/bin/sh -c #(nop) ADD file:52c0e467fa2e92f101018df01a0ff56580c752b7553fbe6df88e16b02af6d4ee in / "
+ "created": "2026-02-24T07:30:08.486457135Z",
+ "created_by": "/bin/sh -c #(nop) ADD file:87202021c36509f80e5414aa2307ce867cd2e3b5f0d0f3bd0c98749793bd1fb4 in / "
},
{
- "created": "2026-02-10T17:40:09.53215364Z",
+ "created": "2026-02-24T07:30:08.982985306Z",
"created_by": "/bin/sh -c #(nop) CMD [\"/bin/bash\"]",
"empty_layer": true
}
@@ -92,7 +92,7 @@
"os": "linux",
"rootfs": {
"diff_ids": [
- "sha256:6b7908e4c7473003628ddbd1d8ad378db659f0bf29a3019f7bb7150e9bfd109d"
+ "sha256:fd7b85c1b84e3dcd6e601489a9676aeb7126f78d71babf9637fab93280660536"
],
"type": "layers"
}
diff --git a/ubuntu_jammy/blobs/sha256/5c8b2c0a6c745bc177669abfaa716b4bc57d58e2ea3882fb5da67f4d59e3dda5 b/ubuntu_jammy/blobs/sha256/5c8b2c0a6c745bc177669abfaa716b4bc57d58e2ea3882fb5da67f4d59e3dda5
deleted file mode 100644
index d1a0500..0000000
diff --git a/ubuntu_jammy/blobs/sha256/b1cba2e842ca52b95817f958faf99734080c78e92e43ce609cde9244867b49ed 'tar -t' b/ubuntu_jammy/blobs/sha256/96c832531c38e688c852576582a5ab43a21815c743665a03b6b066c850ed1522 'tar -t'
similarity index 100%
rename from ubuntu_jammy/blobs/sha256/b1cba2e842ca52b95817f958faf99734080c78e92e43ce609cde9244867b49ed 'tar -t'
rename to ubuntu_jammy/blobs/sha256/96c832531c38e688c852576582a5ab43a21815c743665a03b6b066c850ed1522 'tar -t'
diff --git a/ubuntu_devel/blobs/sha256/37a0633b900e99d0937986022b4b4018908e1361704425313cc1c348bebd7230 b/ubuntu_jammy/blobs/sha256/c9672795a48854502d9dc0f1b719ac36dd99259a2f8ce425904a5cb4ae0d60d2
similarity index 54%
rename from ubuntu_devel/blobs/sha256/37a0633b900e99d0937986022b4b4018908e1361704425313cc1c348bebd7230
rename to ubuntu_jammy/blobs/sha256/c9672795a48854502d9dc0f1b719ac36dd99259a2f8ce425904a5cb4ae0d60d2
index b23db59..ca26c7d 100644
--- a/ubuntu_devel/blobs/sha256/37a0633b900e99d0937986022b4b4018908e1361704425313cc1c348bebd7230
+++ b/ubuntu_jammy/blobs/sha256/c9672795a48854502d9dc0f1b719ac36dd99259a2f8ce425904a5cb4ae0d60d2
@@ -1,14 +1,14 @@
{
"config": {
- "digest": "sha256:ec90772179318f186810ff22a3e4e1c5de8a97f4f1d56652c558761220128b2b",
+ "digest": "sha256:2a8380840c2fad0be3c1132c6950a8989b560f572b2a17bc7907b5288ee71780",
"mediaType": "application/vnd.oci.image.config.v1+json",
- "size": 2297
+ "size": 2296
},
"layers": [
{
- "digest": "sha256:3c261c4d22b0eb03c17e9c8acc3b714b4abd96cd3b2435def412cb5367ae9e85",
+ "digest": "sha256:96c832531c38e688c852576582a5ab43a21815c743665a03b6b066c850ed1522",
"mediaType": "application/vnd.oci.image.layer.v1.tar+gzip",
- "size": 33675624
+ "size": 29538520
}
],
"mediaType": "application/vnd.oci.image.manifest.v1+json",
diff --git a/ubuntu_jammy/index.json b/ubuntu_jammy/index.json
index 0a0ffaa..3c38269 100644
--- a/ubuntu_jammy/index.json
+++ b/ubuntu_jammy/index.json
@@ -1,7 +1,7 @@
{
"manifests": [
{
- "digest": "sha256:5c8b2c0a6c745bc177669abfaa716b4bc57d58e2ea3882fb5da67f4d59e3dda5",
+ "digest": "sha256:c9672795a48854502d9dc0f1b719ac36dd99259a2f8ce425904a5cb4ae0d60d2",
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"size": 424
}
diff --git a/ubuntu_latest/blobs/sha256/98ff7968124952e719a8a69bb3cccdd217f5fe758108ac4f21ad22e1df44d237 b/ubuntu_latest/blobs/sha256/67efaecc0031a612cf7bb3c863407018dbbef0a971f62032b77aa542ac8ac0d2
similarity index 54%
rename from ubuntu_latest/blobs/sha256/98ff7968124952e719a8a69bb3cccdd217f5fe758108ac4f21ad22e1df44d237
rename to ubuntu_latest/blobs/sha256/67efaecc0031a612cf7bb3c863407018dbbef0a971f62032b77aa542ac8ac0d2
index 746522e..27e8691 100644
--- a/ubuntu_latest/blobs/sha256/98ff7968124952e719a8a69bb3cccdd217f5fe758108ac4f21ad22e1df44d237
+++ b/ubuntu_latest/blobs/sha256/67efaecc0031a612cf7bb3c863407018dbbef0a971f62032b77aa542ac8ac0d2
@@ -1,14 +1,14 @@
{
"config": {
- "digest": "sha256:bbdabce66f1b7dde0c081a6b4536d837cd81dd322dd8c99edd68860baf3b2db3",
+ "digest": "sha256:f794f40ddfff5af8ef1b39ee29eab3b5400ea70b9ebefd286812dbbe0054ad6b",
"mediaType": "application/vnd.oci.image.config.v1+json",
- "size": 2294
+ "size": 2296
},
"layers": [
{
- "digest": "sha256:01d7766a2e4a62b74e0bebf2cd12c47e675e9221174f6570854203e84ffe68b0",
+ "digest": "sha256:817807f3c64e0b90b66edc7d90297f121cad2a7c2a3ee05a731557762f91e6c7",
"mediaType": "application/vnd.oci.image.layer.v1.tar+gzip",
- "size": 29727611
+ "size": 29731993
}
],
"mediaType": "application/vnd.oci.image.manifest.v1+json",
diff --git a/ubuntu_latest/blobs/sha256/01d7766a2e4a62b74e0bebf2cd12c47e675e9221174f6570854203e84ffe68b0 'tar -t' b/ubuntu_latest/blobs/sha256/817807f3c64e0b90b66edc7d90297f121cad2a7c2a3ee05a731557762f91e6c7 'tar -t'
similarity index 100%
rename from ubuntu_latest/blobs/sha256/01d7766a2e4a62b74e0bebf2cd12c47e675e9221174f6570854203e84ffe68b0 'tar -t'
rename to ubuntu_latest/blobs/sha256/817807f3c64e0b90b66edc7d90297f121cad2a7c2a3ee05a731557762f91e6c7 'tar -t'
diff --git a/ubuntu_latest/blobs/sha256/bbdabce66f1b7dde0c081a6b4536d837cd81dd322dd8c99edd68860baf3b2db3 b/ubuntu_latest/blobs/sha256/f794f40ddfff5af8ef1b39ee29eab3b5400ea70b9ebefd286812dbbe0054ad6b
similarity index 68%
rename from ubuntu_latest/blobs/sha256/bbdabce66f1b7dde0c081a6b4536d837cd81dd322dd8c99edd68860baf3b2db3
rename to ubuntu_latest/blobs/sha256/f794f40ddfff5af8ef1b39ee29eab3b5400ea70b9ebefd286812dbbe0054ad6b
index f80bc74..333c831 100644
--- a/ubuntu_latest/blobs/sha256/bbdabce66f1b7dde0c081a6b4536d837cd81dd322dd8c99edd68860baf3b2db3
+++ b/ubuntu_latest/blobs/sha256/f794f40ddfff5af8ef1b39ee29eab3b5400ea70b9ebefd286812dbbe0054ad6b
@@ -13,7 +13,7 @@
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
],
"Hostname": "",
- "Image": "sha256:8628e09433a2d8f88faed4947219cf1168ddebec6d5c1a302eec5a608ac74f35",
+ "Image": "sha256:a183c472e886b79fe79d76f1103034e36a62e3059790755bcc064ecfc1265282",
"Labels": {
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.version": "24.04"
@@ -26,7 +26,7 @@
"Volumes": null,
"WorkingDir": ""
},
- "container": "9c7c2bba8be8227f6037e5aae7e45d806b3b08f0aafd136443cd2521b6ddceb2",
+ "container": "a389e0bc082e4ff5811f8b76a7c0e0ed2f2ca8f04e8a0b7149a814130afdc6ad",
"container_config": {
"AttachStderr": false,
"AttachStdin": false,
@@ -42,8 +42,8 @@
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
],
- "Hostname": "9c7c2bba8be8",
- "Image": "sha256:8628e09433a2d8f88faed4947219cf1168ddebec6d5c1a302eec5a608ac74f35",
+ "Hostname": "a389e0bc082e",
+ "Image": "sha256:a183c472e886b79fe79d76f1103034e36a62e3059790755bcc064ecfc1265282",
"Labels": {
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.version": "24.04"
@@ -56,35 +56,35 @@
"Volumes": null,
"WorkingDir": ""
},
- "created": "2026-02-10T16:49:57.226767398Z",
+ "created": "2026-02-23T17:17:56.132176015Z",
"docker_version": "26.1.3",
"history": [
{
- "created": "2026-02-10T16:49:54.555271506Z",
+ "created": "2026-02-23T17:17:53.377372197Z",
"created_by": "/bin/sh -c #(nop) ARG RELEASE",
"empty_layer": true
},
{
- "created": "2026-02-10T16:49:54.597347Z",
+ "created": "2026-02-23T17:17:53.408508506Z",
"created_by": "/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH",
"empty_layer": true
},
{
- "created": "2026-02-10T16:49:54.629922453Z",
+ "created": "2026-02-23T17:17:53.45626953Z",
"created_by": "/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu",
"empty_layer": true
},
{
- "created": "2026-02-10T16:49:54.658571922Z",
+ "created": "2026-02-23T17:17:53.486399083Z",
"created_by": "/bin/sh -c #(nop) LABEL org.opencontainers.image.version=24.04",
"empty_layer": true
},
{
- "created": "2026-02-10T16:49:56.804776604Z",
- "created_by": "/bin/sh -c #(nop) ADD file:1ae27d2ef4369361104b699712f3897141e394785df5d193d67b44626f57eb87 in / "
+ "created": "2026-02-23T17:17:55.728281038Z",
+ "created_by": "/bin/sh -c #(nop) ADD file:3f78aa860931e0853077f09eb31eddbeeef8a9dd70977305b4876aa176770721 in / "
},
{
- "created": "2026-02-10T16:49:57.226767398Z",
+ "created": "2026-02-23T17:17:56.132176015Z",
"created_by": "/bin/sh -c #(nop) CMD [\"/bin/bash\"]",
"empty_layer": true
}
@@ -92,7 +92,7 @@
"os": "linux",
"rootfs": {
"diff_ids": [
- "sha256:efafae78d70c98626c521c246827389128e7d7ea442db31bc433934647f0c791"
+ "sha256:f2a7f072635332d307212e318e07284948b89f4167fce5c4d7c9cfb7590b74b6"
],
"type": "layers"
}
diff --git a/ubuntu_latest/index.json b/ubuntu_latest/index.json
index ff16dbb..28c00c5 100644
--- a/ubuntu_latest/index.json
+++ b/ubuntu_latest/index.json
@@ -1,7 +1,7 @@
{
"manifests": [
{
- "digest": "sha256:98ff7968124952e719a8a69bb3cccdd217f5fe758108ac4f21ad22e1df44d237",
+ "digest": "sha256:67efaecc0031a612cf7bb3c863407018dbbef0a971f62032b77aa542ac8ac0d2",
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"size": 424
}Relevant Maintainers:
|
|
@tianon FYI, the latest commit should already address the 2 hard blockers. The history entries should be addressed by the next PR |
Update Ubuntu to the latest published OCI tarballs as of 2026-03-01.