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
Vladislav
eepm
Commits
b3b5d783
Commit
b3b5d783
authored
May 29, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm clean: add --direct support and print about a possibility to use it
parent
dc88ce14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
epm-clean
bin/epm-clean
+5
-3
No files found.
bin/epm-clean
View file @
b3b5d783
...
...
@@ -23,6 +23,7 @@ __remove_alt_apt_cache_file()
sudocmd
rm
-vf
/var/cache/apt/partial/
*
sudocmd
rm
-vf
/var/lib/apt/lists/
*
pkglist
*
sudocmd
rm
-vf
/var/lib/apt/lists/
*
release
*
return
0
}
__remove_deb_apt_cache_file
()
...
...
@@ -32,6 +33,7 @@ __remove_deb_apt_cache_file()
sudocmd
rm
-vf
/var/lib/apt/lists/
*
Packages
*
sudocmd
rm
-vf
/var/lib/apt/lists/
*
Release
*
sudocmd
rm
-vf
/var/lib/apt/lists/
*
Translation
*
return
0
}
epm_clean
()
...
...
@@ -43,15 +45,15 @@ epm_clean()
case
$PMTYPE
in
apt-rpm
)
sudocmd apt-get clean
$dryrun
[
-n
"
$
force
"
]
&&
__remove_alt_apt_cache_file
[
-n
"
$
direct
"
]
&&
__remove_alt_apt_cache_file
||
info
"Use epm clean --direct to remove all downloaded indexes."
;;
apt-dpkg
)
sudocmd apt-get clean
$dryrun
[
-n
"
$
force
"
]
&&
__remove_deb_apt_cache_file
[
-n
"
$
direct
"
]
&&
__remove_deb_apt_cache_file
||
info
"Use epm clean --direct to remove all downloaded indexes."
;;
aptitude-dpkg
)
sudocmd aptitude clean
[
-n
"
$
force
"
]
&&
__remove_deb_apt_cache_file
[
-n
"
$
direct
"
]
&&
__remove_deb_apt_cache_file
||
info
"Use epm clean --direct to remove all downloaded indexes."
;;
yum-rpm
)
sudocmd yum clean all
...
...
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