Commit 927c9569 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-addrepo: add __add_line_to_file and use it

parent 8de3c791
...@@ -100,11 +100,10 @@ __epm_addrepo_add_alt_repo() ...@@ -100,11 +100,10 @@ __epm_addrepo_add_alt_repo()
local branch="$1" local branch="$1"
local repourl="$2" local repourl="$2"
local comp="$3" local comp="$3"
local sign local sign="$4"
sign="$(__get_sign $repo)" [ -n "$sign" ] || sign="$(__get_sign $repo)"
[ -n "$comp" ] || comp="classic"
[ -n "$comp" ] | comp="classic"
local i local i
for i in $(get_archlist) ; do for i in $(get_archlist) ; do
...@@ -212,23 +211,34 @@ Examples: ...@@ -212,23 +211,34 @@ Examples:
return return
} }
__add_line_to_file()
{
local file="$1"
local line="$2"
local sc="sudocmd"
[ -n "$verbose" ] || sc="sudorun"
# add empty line if needed
[ -z "$(tail -n1 "$file")" ] || echo "" | $sc tee -a "$file" >/dev/null
echo "$line" | $sc tee -a "$file" >/dev/null
}
# like apt-add-repository on deb systems # like apt-add-repository on deb systems
__epm_addrepo_apt() __epm_addrepo_to_file()
{ {
local repo="$*" local repo="$*"
epm --quiet repo list | grep -q -F "$repo" && return 0 if [ -z "$force" ] ; then
# skip if repo is already in the list
epm --quiet repo list "$repo" && return 0
fi
if [ -n "$dryrun" ] ; then if [ -n "$dryrun" ] ; then
echo "$repo" echo "$repo"
return return
fi fi
local sc="sudocmd" __add_line_to_file "$repo"
[ -z "$quiet" ] || sc="sudorun"
[ -z "$(tail -n1 /etc/apt/sources.list)" ] || echo "" | $sc tee -a /etc/apt/sources.list
echo "$repo" | $sc tee -a /etc/apt/sources.list
} }
...@@ -364,7 +374,7 @@ __epm_addrepo_altlinux() ...@@ -364,7 +374,7 @@ __epm_addrepo_altlinux()
# when add correct sources.list string # when add correct sources.list string
if echo "$repo" | grep "^rpm " ; then if echo "$repo" | grep "^rpm " ; then
__epm_addrepo_apt "$repo" __epm_addrepo_to_file /etc/apt/sources.list "$repo"
return return
fi fi
...@@ -418,9 +428,7 @@ __epm_addrepo_astra() ...@@ -418,9 +428,7 @@ __epm_addrepo_astra()
;; ;;
esac esac
#echo "Use workaround for AstraLinux ..." __epm_addrepo_to_file /etc/apt/sources.list "$repo"
# aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for AstraLinuxCE/orel
__epm_addrepo_apt "$repo"
return return
} }
...@@ -428,9 +436,7 @@ __epm_addrepo_alpine() ...@@ -428,9 +436,7 @@ __epm_addrepo_alpine()
{ {
local repo="$1" local repo="$1"
is_url "$repo" || fatal "Only URL is supported" is_url "$repo" || fatal "Only URL is supported"
epm --quiet repo list | grep -q -F "$repo" && return 0 __epm_addrepo_to_file /etc/apk/repositories "$repo"
echo "$repo" | sudocmd tee -a /etc/apk/repositories
} }
__epm_addrepo_deb() __epm_addrepo_deb()
...@@ -474,10 +480,17 @@ __epm_addrepo_deb() ...@@ -474,10 +480,17 @@ __epm_addrepo_deb()
return return
fi fi
# FIXME: quotes in showcmd/sudocmd if is_command apt-add-repository ; then
showcmd apt-add-repository "$repo" # FIXME: quotes in showcmd/sudocmd
sudorun apt-add-repository "$repo" showcmd apt-add-repository "$repo"
info "Check file /etc/apt/sources.list if needed" sudorun apt-add-repository "$repo"
info "Check file /etc/apt/sources.list if needed"
return
else
warning "apt-add-repository is not installed, use file /etc/apt/sources.list directly"
__epm_addrepo_to_file /etc/apt/sources.list "$repo"
fi
} }
epm_addrepo() epm_addrepo()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment