Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
51ee433c
Commit
51ee433c
authored
May 18, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm full-upgrade: add --interactive support (ask for every step)
parent
59451872
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
9 deletions
+46
-9
epm-full_upgrade
bin/epm-full_upgrade
+45
-8
eepm.conf
etc/eepm.conf
+1
-1
No files found.
bin/epm-full_upgrade
View file @
51ee433c
...
...
@@ -21,9 +21,10 @@ epm_full_upgrade_help()
{
get_help HELPCMD
$SHAREDIR
/epm-full_upgrade
cat
<<
EOF
You can run with --interactive if you can skip some steps interactivelyю
Also you can comment out full_upgrade parts in /etc/eepm/eepm.conf config.
Examples:
epm full-upgrade
epm full-upgrade
[--interactive]
epm full-upgrade --no-flatpack
EOF
}
...
...
@@ -38,6 +39,8 @@ epm_full_upgrade()
epm_full_upgrade_help
return
;;
"--interactive"
)
# HELPCMD: ask before every step
;;
"--no-epm-play"
)
# HELPCMD: skip epm play during full upgrade
full_upgrade_no_epm_play
=
1
;;
...
...
@@ -57,11 +60,37 @@ epm_full_upgrade()
shift
done
docmd epm update
||
fatal
"repository updating is failed."
confirm_action
()
{
[
-n
"
$interactive
"
]
||
return
0
local
response
# call with a prompt string or use a default
read
-r
-p
"
${
1
:-
Are
you sure? [Y/n]
}
"
response
case
$response
in
[
yY][eE][sS]|[yY]|
""
)
true
;;
*
)
false
;;
esac
}
confirm_action
"Update repository info? [Y/n]"
||
full_upgrade_no_update
=
1
if
[
-z
"
$full_upgrade_no_update
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd epm update
||
fatal
"repository updating is failed."
fi
[
-n
"
$quiet
"
]
||
echo
docmd epm
$dryrun
upgrade
||
fatal
"upgrading of the system is failed."
confirm_action
"Do upgrade installed packages? [Y/n]"
||
full_upgrade_no_upgrade
=
1
if
[
-z
"
$full_upgrade_no_upgrade
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd epm
$dryrun
upgrade
||
fatal
"upgrading of the system is failed."
fi
confirm_action
"Upgrade kernel and kernel modules? [Y/n]"
||
full_upgrade_no_kernel_update
=
1
if
[
-z
"
$full_upgrade_no_kernel_update
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd epm
$dryrun
update-kernel
||
fatal
"updating of the kernel is failed."
...
...
@@ -70,25 +99,33 @@ epm_full_upgrade()
# disable epm play --update for non ALT Systems
[
"
$BASEDISTRNAME
"
=
"alt"
]
||
full_upgrade_no_epm_play
=
1
confirm_action
"Upgrade packages installed via epm play? [Y/n]"
||
full_upgrade_no_epm_play
=
1
if
[
-z
"
$full_upgrade_no_epm_play
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd epm
$dryrun
play
--update
all
||
fatal
"updating of applications installed via epm play is failed."
fi
if
[
-z
"
$full_upgrade_no_flatpack
"
]
;
then
if
is_command flatpak
;
then
if
is_command flatpak
;
then
confirm_action
"Upgrade installed flatpak packages? [Y/n]"
||
full_upgrade_no_flatpak
=
1
if
[
-z
"
$full_upgrade_no_flatpak
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd flatpak update
$(
subst_option non_interactive
--assumeyes
)
$(
subst_option dryrun
--no-deploy
)
fi
fi
if
[
-z
"
$full_upgrade_no_snap
"
]
;
then
if
is_command snap
&&
serv snapd exists
&&
serv snapd status
>
/dev/null
;
then
if
is_command snap
&&
serv snapd exists
&&
serv snapd status
>
/dev/null
;
then
confirm_action
"Upgrade installed snap packages? [Y/n]"
||
full_upgrade_no_snap
=
1
if
[
-z
"
$full_upgrade_no_snap
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
sudocmd snap refresh
$(
subst_option dryrun
--list
)
fi
fi
confirm_action
"Do epm clean? [Y/n]"
||
full_upgrade_no_clean
=
1
if
[
-z
"
$full_upgrade_no_clean
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd epm
$dryrun
clean
...
...
etc/eepm.conf
View file @
51ee433c
...
...
@@ -26,7 +26,7 @@
# Uncomment if you need skip some operations during full-upgrade
#full_upgrade_no_epm_play=1
#full_upgrade_no_flatpa
c
k=1
#full_upgrade_no_flatpak=1
#full_upgrade_no_snap=1
#full_upgrade_no_kernel_update=1
#full_upgrade_no_clean=1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment