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
1
Merge Requests
1
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
02dce4d5
Commit
02dce4d5
authored
Mar 11, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.64.56
parent
e8b99ffd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
epm.sh
packed/epm.sh
+0
-0
serv.sh
packed/serv.sh
+17
-2
No files found.
packed/epm.sh
View file @
02dce4d5
This diff is collapsed.
Click to expand it.
packed/serv.sh
View file @
02dce4d5
...
...
@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
EPMVERSION
=
"3.64.5
5
"
EPMVERSION
=
"3.64.5
6
"
# package, single (file), pipe, git
EPMMODE
=
"package"
...
...
@@ -464,7 +464,7 @@ fixme()
debug
()
{
[
-
n
"
$debug
"
]
||
return
[
-
z
"
$debug
"
]
&&
return
set_color
$YELLOW
>
&2
echog
-n
"WARNING: "
>
&2
...
...
@@ -1447,6 +1447,21 @@ else
}
fi
yaml_load_vars
()
{
local
file
=
"
$1
"
shift
local
data field value
data
=
"
$(
epm tool yaml
"
$file
"
2>/dev/null
)
"
for
field
in
"
$@
"
;
do
value
=
"
$(
printf
'%s\n'
"
$data
"
|
grep
"^
${
field
}
="
|
head
-n1
|
sed
"s/^[^=]*=
\"\(
.*
\)\"
$/
\1
/"
)
"
# skip if key is not present in yaml (preserve existing value)
[
-n
"
$value
"
]
||
continue
# Use single quotes to prevent command execution in values
eval
"
$field
='
$(
printf
'%s'
"
$value
"
|
sed
"s/'/'
\\\\
''/g"
)
'"
done
}
# File bin/serv-cat:
serv_cat
()
...
...
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