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
4e295e12
Commit
4e295e12
authored
Mar 19, 2018
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkpkg: detect rpm --nosignature/--nogpg
parent
84b0f978
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
epm-checkpkg
bin/epm-checkpkg
+11
-3
No files found.
bin/epm-checkpkg
View file @
4e295e12
#!/bin/sh
#
# Copyright (C) 2009, 2012, 2013, 2014, 2016 Etersoft
# Copyright (C) 2009, 2012, 2013, 2014, 2016 Vitaly Lipatov <lav@etersoft.ru>
# Copyright (C) 2009, 2012, 2013, 2014, 2016
, 2018
Etersoft
# Copyright (C) 2009, 2012, 2013, 2014, 2016
, 2018
Vitaly Lipatov <lav@etersoft.ru>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
...
...
@@ -17,15 +17,23 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# changed since rpm 4.0.4
__rpm_allows_nosignature
()
{
a
=
rpm
--help
|
grep
-q
--
"--nosignature"
}
check_pkg_integrity
()
{
local
PKG
=
"
$1
"
local
RET
local
NOSIGNATURE
case
$(
get_package_type
$PKG
)
in
rpm
)
assure_exists rpm
docmd rpm
--checksig
--nogpg
$PKG
__rpm_allows_nosignature
&&
NOSIGNATURE
=
"--nosignature"
||
NOSIGNATURE
=
"--nogpg"
docmd rpm
--checksig
$NOSIGNATURE
$PKG
;;
deb
)
assure_exists dpkg
...
...
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