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
c1184208
Commit
c1184208
authored
Dec 16, 2022
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.27.5
parent
21c2db35
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
22 deletions
+44
-22
epm.sh
packed/epm.sh
+23
-12
serv.sh
packed/serv.sh
+21
-10
No files found.
packed/epm.sh
View file @
c1184208
...
...
@@ -5797,7 +5797,7 @@ __switch_alt_to_distro()
docmd epm update-kernel
||
fatal
info
"Run epm release-upgrade again for update to p10"
;;
"p9"
|
"p9 p10"
|
"p10 p10"
)
"p9"
|
"p9 p10"
|
"p10 p10"
|
"9 10"
|
"9 p10"
)
info
"Upgrade all packages to current
$FROM
repository"
__do_upgrade
confirm_info
"Upgrade
$DISTRNAME
from
$FROM
to
$TO
..."
...
...
@@ -9699,6 +9699,8 @@ fill_distr_info()
PRETTY_NAME
=
""
DISTRIB_ID
=
""
DISTRIB_RELEASE
=
""
DISTRIB_FULL_RELEASE
=
""
DISTRIB_RELEASE_ORIG
=
""
DISTRIB_CODENAME
=
""
# Default detection by /etc/os-release
...
...
@@ -9713,13 +9715,14 @@ if distro os-release ; then
# set by os-release:
#PRETTY_NAME
VENDOR_ID
=
"
$ID
"
DISTRIB_FULL_RELEASE
=
$DISTRIB_RELEASE
DISTRIB_FULL_RELEASE
=
"
$DISTRIB_RELEASE
"
DISTRIB_CODENAME
=
"
$VERSION_CODENAME
"
elif
distro lsb-release
;
then
DISTRIB_ID
=
$(
cat
$DISTROFILE
| get_var DISTRIB_ID
)
DISTRIB_RELEASE
=
$(
cat
$DISTROFILE
| get_var DISTRIB_RELEASE
)
DISTRIB_RELEASE
=
"
$(
cat
$DISTROFILE
| get_var DISTRIB_RELEASE
)
"
DISTRIB_RELEASE_ORIG
=
"
$DISTRIB_RELEASE
"
DISTRIB_FULL_RELEASE
=
"
$DISTRIB_RELEASE
"
DISTRIB_CODENAME
=
$(
cat
$DISTROFILE
| get_var DISTRIB_CODENAME
)
PRETTY_NAME
=
$(
cat
$DISTROFILE
| get_var DISTRIB_DESCRIPTION
)
fi
...
...
@@ -9740,10 +9743,13 @@ case "$VENDOR_ID" in
esac
;;
"astra"
)
DISTRIB_RELEASE
=
$(
normalize_version3
"
$DISTRIB_RELEASE_ORIG
"
|
sed
-e
's|_.*||'
)
[
"
$VARIANT
"
=
"orel"
]
&&
DISTRIB_ID
=
"AstraLinuxCE"
||
DISTRIB_ID
=
"AstraLinuxSE"
#[ "$DISTRIB_RELEASE" = "1.17" ] && DISTRIB_RELEASE="$VERSION_ID"
#DISTRIB_RELEASE="$VERSION_CODENAME"
DISTRIB_RELEASE
=
$(
normalize_version2
"
$DISTRIB_RELEASE_ORIG
"
|
sed
-e
's|_.*||'
)
DISTRIB_FULL_RELEASE
=
$(
normalize_version3
"
$DISTRIB_RELEASE_ORIG
"
|
sed
-e
's|_.*||'
)
if
[
"
$VARIANT
"
=
"orel"
]
||
[
"
$VARIANT
"
=
"Orel"
]
;
then
DISTRIB_ID
=
"AstraLinuxCE"
else
DISTRIB_ID
=
"AstraLinuxSE"
fi
;;
esac
...
...
@@ -9760,7 +9766,7 @@ case "$DISTRIB_ID" in
# ;;
"ALTSPWorkstation"
)
DISTRIB_ID
=
"ALTLinux"
case
"
$DISTRIB_
FULL_RELEASE
"
in
case
"
$DISTRIB_
RELEASE_ORIG
"
in
8.0|8.1
)
;;
8.2|8.3
)
...
...
@@ -10226,7 +10232,8 @@ case "$1" in
echo
" -s|-n - print base name of the distro (vendor name) (ubuntu for all Ubuntu family, alt for all ALT family) (see _vendor macros in rpm)"
echo
" -y - print running service manager"
echo
" --pretty - print pretty distro name"
echo
" -v - print version of distro"
echo
" -v - print version of the distro"
echo
" --full-version - print full version of the distro"
echo
" -V - print the utility version"
echo
"Run without args to print all information."
exit
0
...
...
@@ -10288,7 +10295,11 @@ case "$1" in
;;
-v
)
override_distrib
"
$2
"
echo
$DISTRIB_RELEASE
echo
"
$DISTRIB_RELEASE
"
;;
--full-version
)
override_distrib
"
$2
"
echo
"
$DISTRIB_FULL_RELEASE
"
;;
-s
|
-n
)
override_distrib
"
$2
"
...
...
@@ -11332,7 +11343,7 @@ Examples:
print_version
()
{
echo
"EPM package manager version 3.27.
4
https://wiki.etersoft.ru/Epm"
echo
"EPM package manager version 3.27.
5
https://wiki.etersoft.ru/Epm"
echo
"Running on
$(
$DISTRVENDOR
-e
)
('
$PMTYPE
' package manager uses '
$PKGFORMAT
' package format)"
echo
"Copyright (c) Etersoft 2012-2022"
echo
"This program may be freely redistributed under the terms of the GNU AGPLv3."
...
...
@@ -11342,7 +11353,7 @@ print_version()
Usage
=
"Usage: epm [options] <command> [package name(s), package files]..."
Descr
=
"epm - EPM package manager"
EPMVERSION
=
3.27.
4
EPMVERSION
=
3.27.
5
verbose
=
$EPM_VERBOSE
quiet
=
nodeps
=
...
...
packed/serv.sh
View file @
c1184208
...
...
@@ -1605,6 +1605,8 @@ fill_distr_info()
PRETTY_NAME
=
""
DISTRIB_ID
=
""
DISTRIB_RELEASE
=
""
DISTRIB_FULL_RELEASE
=
""
DISTRIB_RELEASE_ORIG
=
""
DISTRIB_CODENAME
=
""
# Default detection by /etc/os-release
...
...
@@ -1619,13 +1621,14 @@ if distro os-release ; then
# set by os-release:
#PRETTY_NAME
VENDOR_ID
=
"
$ID
"
DISTRIB_FULL_RELEASE
=
$DISTRIB_RELEASE
DISTRIB_FULL_RELEASE
=
"
$DISTRIB_RELEASE
"
DISTRIB_CODENAME
=
"
$VERSION_CODENAME
"
elif
distro lsb-release
;
then
DISTRIB_ID
=
$(
cat
$DISTROFILE
| get_var DISTRIB_ID
)
DISTRIB_RELEASE
=
$(
cat
$DISTROFILE
| get_var DISTRIB_RELEASE
)
DISTRIB_RELEASE
=
"
$(
cat
$DISTROFILE
| get_var DISTRIB_RELEASE
)
"
DISTRIB_RELEASE_ORIG
=
"
$DISTRIB_RELEASE
"
DISTRIB_FULL_RELEASE
=
"
$DISTRIB_RELEASE
"
DISTRIB_CODENAME
=
$(
cat
$DISTROFILE
| get_var DISTRIB_CODENAME
)
PRETTY_NAME
=
$(
cat
$DISTROFILE
| get_var DISTRIB_DESCRIPTION
)
fi
...
...
@@ -1646,10 +1649,13 @@ case "$VENDOR_ID" in
esac
;;
"astra"
)
DISTRIB_RELEASE
=
$(
normalize_version3
"
$DISTRIB_RELEASE_ORIG
"
|
sed
-e
's|_.*||'
)
[
"
$VARIANT
"
=
"orel"
]
&&
DISTRIB_ID
=
"AstraLinuxCE"
||
DISTRIB_ID
=
"AstraLinuxSE"
#[ "$DISTRIB_RELEASE" = "1.17" ] && DISTRIB_RELEASE="$VERSION_ID"
#DISTRIB_RELEASE="$VERSION_CODENAME"
DISTRIB_RELEASE
=
$(
normalize_version2
"
$DISTRIB_RELEASE_ORIG
"
|
sed
-e
's|_.*||'
)
DISTRIB_FULL_RELEASE
=
$(
normalize_version3
"
$DISTRIB_RELEASE_ORIG
"
|
sed
-e
's|_.*||'
)
if
[
"
$VARIANT
"
=
"orel"
]
||
[
"
$VARIANT
"
=
"Orel"
]
;
then
DISTRIB_ID
=
"AstraLinuxCE"
else
DISTRIB_ID
=
"AstraLinuxSE"
fi
;;
esac
...
...
@@ -1666,7 +1672,7 @@ case "$DISTRIB_ID" in
# ;;
"ALTSPWorkstation"
)
DISTRIB_ID
=
"ALTLinux"
case
"
$DISTRIB_
FULL_RELEASE
"
in
case
"
$DISTRIB_
RELEASE_ORIG
"
in
8.0|8.1
)
;;
8.2|8.3
)
...
...
@@ -2132,7 +2138,8 @@ case "$1" in
echo
" -s|-n - print base name of the distro (vendor name) (ubuntu for all Ubuntu family, alt for all ALT family) (see _vendor macros in rpm)"
echo
" -y - print running service manager"
echo
" --pretty - print pretty distro name"
echo
" -v - print version of distro"
echo
" -v - print version of the distro"
echo
" --full-version - print full version of the distro"
echo
" -V - print the utility version"
echo
"Run without args to print all information."
exit
0
...
...
@@ -2194,7 +2201,11 @@ case "$1" in
;;
-v
)
override_distrib
"
$2
"
echo
$DISTRIB_RELEASE
echo
"
$DISTRIB_RELEASE
"
;;
--full-version
)
override_distrib
"
$2
"
echo
"
$DISTRIB_FULL_RELEASE
"
;;
-s
|
-n
)
override_distrib
"
$2
"
...
...
@@ -2327,7 +2338,7 @@ print_version()
local
on_text
=
"(host system)"
local
virt
=
"
$(
$DISTRVENDOR
-i
)
"
[
"
$virt
"
=
"(unknown)"
]
||
[
"
$virt
"
=
"(host system)"
]
||
on_text
=
"(under
$virt
)"
echo
"Service manager version 3.27.
4
https://wiki.etersoft.ru/Epm"
echo
"Service manager version 3.27.
5
https://wiki.etersoft.ru/Epm"
echo
"Running on
$(
$DISTRVENDOR
-e
)
$on_text
with
$SERVICETYPE
"
echo
"Copyright (c) Etersoft 2012-2021"
echo
"This program may be freely redistributed under the terms of the GNU AGPLv3."
...
...
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