aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomáš Chvátal <tomas.chvatal@gmail.com>2018-04-26 10:53:46 -0700
committerZac Medico <zmedico@gentoo.org>2018-04-26 10:56:05 -0700
commite3155774215a3520a415f926ce4495cfb0349241 (patch)
tree49030de2f5bc6cc280b38d9d0e58e760cb3cb1bb
parentetc-update: add /usr/share to CONFIG_PROTECT for suse OS_FAMILY (diff)
downloadportage-e3155774215a3520a415f926ce4495cfb0349241.tar.gz
portage-e3155774215a3520a415f926ce4495cfb0349241.tar.bz2
portage-e3155774215a3520a415f926ce4495cfb0349241.zip
etc-update: support fedora and rhel with rpm OS_FAMILY
-rwxr-xr-xbin/etc-update21
1 files changed, 18 insertions, 3 deletions
diff --git a/bin/etc-update b/bin/etc-update
index db62f6972..8b3604a4c 100755
--- a/bin/etc-update
+++ b/bin/etc-update
@@ -35,7 +35,8 @@ get_config() {
OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2 | sed -e 's/"//g')
case $OS_RELEASE_ID in
- suse|opensuse|opensuse-leap|opensuse-tumbleweed) OS_FAMILY='suse' NEW_EXT='rpmnew';;
+ suse|opensuse|opensuse-leap|opensuse-tumbleweed) OS_FAMILY='rpm' ;;
+ fedora|rhel) OS_FAMILY='rpm' ;;
arch|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';;
*) OS_FAMILY='gentoo' ;;
esac
@@ -53,7 +54,7 @@ if [[ $OS_FAMILY == 'gentoo' ]]; then
get_live_file() {
echo "${rpath}/${rfile:10}"
}
-elif [[ $OS_FAMILY == 'suse' ]] || [[ $OS_FAMILY == 'arch' ]]; then
+elif [[ $OS_FAMILY == 'arch' ]]; then
get_basename() {
printf -- '%s\n' "${1%.${NEW_EXT}}"
}
@@ -66,6 +67,20 @@ elif [[ $OS_FAMILY == 'suse' ]] || [[ $OS_FAMILY == 'arch' ]]; then
get_live_file() {
printf -- '%s\n' "${cfg_file%.${NEW_EXT}}"
}
+# In rpm we have rpmsave, rpmorig, and rpmnew.
+elif [[ $OS_FAMILY == 'rpm' ]]; then
+ get_basename() {
+ printf -- '%s\n' "${1}" |sed -e 's/\.rpmsave$//' -e 's/\.rpmnew$//' -e 's/\.rpmorig$//'
+ }
+ get_basename_find_opt() {
+ printf -- '%s\n' "${1}.rpm????"
+ }
+ get_scan_regexp() {
+ echo "s:\(^.*/\)\(.*\)\(\.\(rpmnew|rpmsave|rpmorig\)\):\1\2\3$b\1$b\3$b\2:"
+ }
+ get_live_file() {
+ printf -- '%s\n' "${cfg_file}" |sed -e 's/\.rpmsave$//' -e 's/\.rpmnew$//' -e 's/\.rpmorig$//'
+ }
fi
cmd_var_is_valid() {
@@ -754,7 +769,7 @@ while [[ -n $1 ]] ; do
done
${SET_X} && set -x
-if [[ $OS_FAMILY == 'suse' ]]; then
+if [[ $OS_FAMILY == 'rpm' ]]; then
PORTAGE_CONFIGROOT='/'
PORTAGE_TMPDIR='/tmp'
CONFIG_PROTECT='/etc /usr/share'