Commit 7324a585 authored by Vitaly Lipatov's avatar Vitaly Lipatov

add template for ALT Linux release upgrade

parent 07e19e83
#!/bin/sh #!/bin/sh
# #
# Copyright (C) 2013 Etersoft # Copyright (C) 2013, 2016 Etersoft
# Copyright (C) 2013 Vitaly Lipatov <lav@etersoft.ru> # Copyright (C) 2013, 2016 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
...@@ -17,6 +17,17 @@ ...@@ -17,6 +17,17 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
__update_alt_repo_to_next_distro()
{
case "$DISTRVERSION" in
# p7)
# ;;
*)
info "Have no idea how to update from $DISTRVERSION"
return 1
esac
}
epm_release_upgrade() epm_release_upgrade()
{ {
info "Starting upgrade whole system to the next release" info "Starting upgrade whole system to the next release"
...@@ -26,7 +37,7 @@ epm_release_upgrade() ...@@ -26,7 +37,7 @@ epm_release_upgrade()
apt-rpm) apt-rpm)
docmd epm update docmd epm update
docmd epm install apt rpm docmd epm install apt rpm
showcmd "TODO: change repo" __update_alt_repo_to_next_distro || exit
docmd epm Upgrade docmd epm Upgrade
docmd epm update-kernel docmd epm update-kernel
;; ;;
......
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