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
f563df5e
Commit
f563df5e
authored
Mar 25, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm full-upgrade: allow skip kernel update (via eepm.conf)
parent
bdfe02b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
epm-full_upgrade
bin/epm-full_upgrade
+7
-2
eepm.conf
etc/eepm.conf
+1
-0
No files found.
bin/epm-full_upgrade
View file @
f563df5e
...
...
@@ -47,6 +47,9 @@ epm_full_upgrade()
"--no-snap"
)
# HELPCMD: skip snap update during full upgrade
full_upgrade_no_snap
=
1
;;
"--no-kernel-update"
)
# HELPCMD: skip kernel update during full upgrade
full_upgrade_no_kernel_update
=
1
;;
esac
shift
done
...
...
@@ -56,8 +59,10 @@ epm_full_upgrade()
[
-n
"
$quiet
"
]
||
echo
docmd epm upgrade
||
fatal
"upgrading of the system is failed."
[
-n
"
$quiet
"
]
||
echo
docmd epm update-kernel
||
fatal
"updating of the kernel is failed."
if
[
-z
"
$full_upgrade_no_kernel_update
"
]
;
then
[
-n
"
$quiet
"
]
||
echo
docmd epm update-kernel
||
fatal
"updating of the kernel is failed."
fi
# disable epm play --update for non ALT Systems
[
"
$BASEDISTRNAME
"
=
"alt"
]
||
full_upgrade_no_epm_play
=
1
...
...
etc/eepm.conf
View file @
f563df5e
...
...
@@ -26,3 +26,4 @@
#full_upgrade_no_epm_play=1
#full_upgrade_no_flatpack=1
#full_upgrade_no_snap=1
#full_upgrade_no_kernel_update=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