Commit dc3e919f authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm update: refactoring

parent 72b9f228
#!/bin/sh #!/bin/sh
# #
# Copyright (C) 2012, 2014, 2016-2017 Etersoft # Copyright (C) 2012, 2014, 2016-2017, 2023 Etersoft
# Copyright (C) 2012, 2014, 2016-2017 Vitaly Lipatov <lav@etersoft.ru> # Copyright (C) 2012, 2014, 2016-2017, 2023 Vitaly Lipatov <lav@etersoft.ru>
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by # it under the terms of the GNU Affero General Public License as published by
...@@ -52,11 +52,26 @@ __save_available_packages() ...@@ -52,11 +52,26 @@ __save_available_packages()
short=--short epm_list_available | sort | sudorun tee $epm_vardir/available-packages >/dev/null short=--short epm_list_available | sort | sudorun tee $epm_vardir/available-packages >/dev/null
} }
__epm_update_content_index()
{
case $BASEDISTRNAME in
"alt")
load_helper epm-sh-altlinux-contents-index
update_alt_contents_index
return
;;
esac
epm_update() case $PMTYPE in
apt-dpkg)
sudocmd apt-file update
;;
esac
}
__epm_update()
{ {
local content_index
[ "$1" = "--content-index" ] && content_index=1 && shift
[ -z "$*" ] || fatal "No arguments are allowed here" [ -z "$*" ] || fatal "No arguments are allowed here"
...@@ -67,26 +82,11 @@ warmup_hibase ...@@ -67,26 +82,11 @@ warmup_hibase
case $BASEDISTRNAME in case $BASEDISTRNAME in
"alt") "alt")
if [ -n "$content_index" ] ; then
load_helper epm-sh-altlinux-contents-index
update_alt_contents_index
return
fi
# TODO: hack against cd to cwd in apt-get on ALT # TODO: hack against cd to cwd in apt-get on ALT
cd / cd /
sudocmd apt-get update sudocmd apt-get update
ret="$?" ret="$?"
cd - >/dev/null cd - >/dev/null
[ "$ret" = "0" ] || return
__check_for_epm_version
__epm_touch_pkg
__save_available_packages
load_helper epm-sh-altlinux-contents-index
update_alt_contents_index
return $ret return $ret
;; ;;
esac esac
...@@ -99,13 +99,9 @@ case $PMTYPE in ...@@ -99,13 +99,9 @@ case $PMTYPE in
sudocmd apt-get update sudocmd apt-get update
ret="$?" ret="$?"
cd - >/dev/null cd - >/dev/null
[ "$ret" = "0" ] || return return $ret
;; ;;
apt-dpkg) apt-dpkg)
if [ -n "$content_index" ] ; then
sudocmd apt-file update
return
fi
sudocmd apt-get update || return sudocmd apt-get update || return
# apt-get update retrieve Contents file too # apt-get update retrieve Contents file too
#sudocmd apt-file update #sudocmd apt-file update
...@@ -183,10 +179,23 @@ case $PMTYPE in ...@@ -183,10 +179,23 @@ case $PMTYPE in
fatal "Have no suitable update command for $PMTYPE" fatal "Have no suitable update command for $PMTYPE"
;; ;;
esac esac
}
epm_update()
{
if [ "$1" = "--content-index" ] ; then
__epm_update_content_index
return
fi
__epm_update "$@" || return
__epm_touch_pkg
__epm_touch_pkg __save_available_packages
__save_available_packages __epm_update_content_index
return 0
return 0
} }
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