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
09eda972
Commit
09eda972
authored
Aug 01, 2012
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --nodeps support for rpm in install/remove
parent
ebde6e75
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
epm
bin/epm
+0
-1
epm-install
bin/epm-install
+1
-1
epm-remove
bin/epm-remove
+1
-1
No files found.
bin/epm
View file @
09eda972
...
...
@@ -176,7 +176,6 @@ for opt in "$@" ; do
quiet
=
1
;;
--nodeps
)
# HELPOPT: skip dependency check (during install/simulate and so on)
fatal
"--nodeps not realized yet"
nodeps
=
"--nodeps"
;;
--auto
)
# HELPOPT: non interactive mode
...
...
bin/epm-install
View file @
09eda972
...
...
@@ -120,7 +120,7 @@ epm_install_files()
case
$PMTYPE
in
apt-rpm
)
docmd
$SUDO
rpm
-Uvh
--force
$@
&&
return
docmd
$SUDO
rpm
-Uvh
--force
$
nodeps
$
@
&&
return
docmd
$SUDO
apt-get
install
$@
return
;;
apt-dpkg
)
...
...
bin/epm-remove
View file @
09eda972
...
...
@@ -24,7 +24,7 @@ epm_remove_low()
[
-z
"
$1
"
]
&&
return
case
$PMTYPE
in
apt-rpm|yum-rpm|zypper-rpm|urpm-rpm
)
docmd
$SUDO
rpm
-ev
$@
docmd
$SUDO
rpm
-ev
$
nodeps
$
@
return
;;
apt-dpkg
)
docmd
$SUDO
dpkg
-P
$@
...
...
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