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
a3d8bfd5
Commit
a3d8bfd5
authored
Feb 19, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.64.51
parent
b70e44df
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
11 deletions
+19
-11
epm.sh
packed/epm.sh
+0
-0
serv.sh
packed/serv.sh
+19
-11
No files found.
packed/epm.sh
View file @
a3d8bfd5
This diff is collapsed.
Click to expand it.
packed/serv.sh
View file @
a3d8bfd5
...
...
@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
EPMVERSION
=
"3.64.5
0
"
EPMVERSION
=
"3.64.5
1
"
# package, single (file), pipe, git
EPMMODE
=
"package"
...
...
@@ -628,6 +628,14 @@ __get_package_for_command()
esac
}
read_tty
()
{
if
[
-c
/dev/tty
]
;
then
read
-r
"
$@
"
</dev/tty
else
read
-r
"
$@
"
fi
}
confirm
()
{
local
response
local
prompt
...
...
@@ -637,7 +645,7 @@ confirm() {
prompt
=
"
$(
eval_gettext
"Are you sure? [y/N]"
)
"
fi
printf
"%s "
"
$prompt
"
>
&2
read
-r
response </dev/tty
||
return
1
read
_tty response
||
return
1
case
$response
in
[
yY][eE][sS]|[yY]
)
true
...
...
@@ -657,7 +665,7 @@ confirm_yes() {
prompt
=
"
$(
eval_gettext
"Are you sure? [Y/n]"
)
"
fi
printf
"%s "
"
$prompt
"
>
&2
read
-r
response </dev/tty
||
return
1
read
_tty response
||
return
1
case
$response
in
[
nN][oO]|[nN]
)
false
...
...
@@ -1275,7 +1283,7 @@ remove_on_exit()
if
[
-d
"
$1
"
]
;
then
to_clean_tmp_dirs
=
"
$to_clean_tmp_dirs
$1
"
el
if
[
-f
"
$1
"
]
;
then
el
se
to_clean_tmp_files
=
"
$to_clean_tmp_files
$1
"
fi
...
...
@@ -2136,14 +2144,14 @@ _print_additional_usage
################# incorporate bin/distr_info #################
internal_distr_info
()
{
# 2007-202
3
(c) Vitaly Lipatov <lav@etersoft.ru>
# 2007-202
3
(c) Etersoft
# 2007-202
3
Public domain
# 2007-202
6
(c) Vitaly Lipatov <lav@etersoft.ru>
# 2007-202
6
(c) Etersoft
# 2007-202
6
Public domain
# You can set ROOTDIR to root system dir
#ROOTDIR=
PROGVERSION
=
"202
5
0206"
PROGVERSION
=
"202
6
0206"
# TODO: check /etc/system-release
...
...
@@ -3189,7 +3197,7 @@ local orig=''
local
EV
=
''
[
-n
"
$EPMVERSION
"
]
&&
EV
=
"(EPM version
$EPMVERSION
) "
cat
<<
EOF
distro_info v
$PROGVERSION
$EV
: Copyright © 2007-202
5
Etersoft
distro_info v
$PROGVERSION
$EV
: Copyright © 2007-202
6
Etersoft
Pretty name (--pretty):
$(
print_pretty_name
)
(--distro-name / --distro-version):
$DISTRO_NAME
/
$DISTRIB_FULL_RELEASE$orig
...
...
@@ -3234,8 +3242,8 @@ print_help()
echo
" --distro-name - print distro name"
echo
" --distro-version - print full version of the distro"
echo
" --full-version - print full version of the distro"
echo
" --codename (obsoleted) - print distro codename (focal for Ubuntu 20.04)"
echo
" -r|--repo-name - print repository name (focal for Ubuntu 20.04)"
echo
" --codename (obsoleted) - print distro codename (f
.i., f
ocal for Ubuntu 20.04)"
echo
" -r|--repo-name - print repository name (f
.i., f
ocal for Ubuntu 20.04)"
echo
" --build-id - print a string uniquely identifying the system image originally used as the installation base"
echo
" -V - print the utility version"
echo
"Run without args to print all information."
...
...
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