initial version (alpha)
This commit is contained in:
commit
b5de726919
58 changed files with 1237 additions and 0 deletions
9
system_files/usr/bin/yum
Executable file
9
system_files/usr/bin/yum
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
# Redirect to dnf5 if we are running inside a container
|
||||
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
|
||||
exec dnf5 "$@"
|
||||
fi
|
||||
|
||||
echo -e "Looks like you are trying to use yum on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
|
||||
exit 1
|
Loading…
Add table
Add a link
Reference in a new issue