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
a9d69bbc
Commit
a9d69bbc
authored
Aug 18, 2016
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check, update: do not call exit directly
parent
638680d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
epm-check
bin/epm-check
+2
-2
epm-update
bin/epm-update
+3
-3
No files found.
bin/epm-check
View file @
a9d69bbc
...
...
@@ -28,11 +28,11 @@ case $PMTYPE in
apt-dpkg
)
#sudocmd apt-get update || exit
#sudocmd apt-get check || exit
sudocmd apt-get
-f
install
||
exit
sudocmd apt-get
-f
install
||
return
sudocmd apt-get autoremove
;;
aptitude-dpkg
)
sudocmd aptitude
-f
install
||
exit
sudocmd aptitude
-f
install
||
return
#sudocmd apt-get autoremove
;;
yum-rpm
)
...
...
bin/epm-update
View file @
a9d69bbc
...
...
@@ -26,11 +26,11 @@ epm_update()
case
$PMTYPE
in
apt-rpm
)
sudocmd apt-get update
||
exit
sudocmd apt-get update
||
return
#sudocmd apt-get -f install || exit
;;
apt-dpkg
)
sudocmd apt-get update
||
exit
sudocmd apt-get update
||
return
#sudocmd apt-get -f install || exit
#sudocmd apt-get autoremove
;;
...
...
@@ -38,7 +38,7 @@ case $PMTYPE in
# sudocmd snappy
# ;;
aptitude-dpkg
)
sudocmd aptitude update
||
exit
sudocmd aptitude update
||
return
;;
yum-rpm
)
info
"update command is stubbed for yum"
...
...
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