mirror of
https://github.com/rocky-linux/rocky-tools.git
synced 2024-11-25 14:41:25 +00:00
Check to make sure that we're not already on RockyLinux. (#64)
* Check to make sure that we're not already on RockyLinux. Trying to migrate RockyLinux to RockyLinux can cause serious problems.
This commit is contained in:
parent
1602af296a
commit
24054df6f4
@ -449,6 +449,14 @@ collect_system_info () {
|
|||||||
redhat-release-eula
|
redhat-release-eula
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Check to make sure that we don't already have a full or partial
|
||||||
|
# RockyLinux install.
|
||||||
|
if [[ $(rpm -qa "${!provides_pkg_map[@]}") ]]; then
|
||||||
|
exit_message \
|
||||||
|
$'Found a full or partial RockyLinux install already in place. Aborting\n'
|
||||||
|
$'because continuing with the migration could cause further damage to system.'
|
||||||
|
fi
|
||||||
|
|
||||||
for pkg in "${!provides_pkg_map[@]}"; do
|
for pkg in "${!provides_pkg_map[@]}"; do
|
||||||
printf '.'
|
printf '.'
|
||||||
prov=${provides_pkg_map[$pkg]}
|
prov=${provides_pkg_map[$pkg]}
|
||||||
|
Loading…
Reference in New Issue
Block a user