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
2fe9d014
Commit
2fe9d014
authored
Aug 19, 2015
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix update repo checking
parent
ba7c9b33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
epm-check_updated_repo
bin/epm-check_updated_repo
+20
-6
No files found.
bin/epm-check_updated_repo
View file @
2fe9d014
...
...
@@ -17,15 +17,31 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
__is_repo_info_download
()
__is_repo_info_download
ed
()
{
case
$PMTYPE
in
apt-
*
)
if
[
-r
/var/cache/apt
]
;
then
# FIXME: only if root permissions
# FIXME: only if root permissions, now skip for user
test
-r
/var/cache/apt/pkgcache.bin
||
return
fi
;;
*
)
;;
esac
return
0
}
__is_repo_info_uptodate
()
{
case
$PMTYPE
in
apt-
*
)
if
[
-r
/var/cache/apt
]
;
then
# FIXME: only if root permissions, now skip for user
test
-r
/var/cache/apt/pkgcache.bin
||
return
# if repo older than 1 day, return false
test
-n
"
$(
find /var/cache/apt/pkgcache.bin
-ctime
+1
)
"
||
return
# find print string if file is obsoleted
test
-z
"
$(
find /var/cache/apt/pkgcache.bin
-mtime
+1
)
"
||
return
fi
;;
*
)
...
...
@@ -36,12 +52,10 @@ __is_repo_info_download()
update_repo_if_needed
()
{
if
!
__is_repo_info_download
;
then
if
!
__is_repo_info_download
ed
||
!
__is_repo_info_uptodate
;
then
load_helper epm-update
epm_update
return
fi
# TODO: if repo info is very obsoleted (a few days?), we need run update
}
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