Fedora EPEL 7 Update: mock-1.4.11-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-4f5f46b079
2018-06-29 09:38:23.985442
--------------------------------------------------------------------------------
Name : mock
Product : Fedora EPEL 7
Version : 1.4.11
Release : 1.el7
URL : https://github.com/rpm-software-management/mock/
Summary : Builds packages inside chroots
Description :
Mock takes an SRPM and builds it in a chroot.
--------------------------------------------------------------------------------
Update Information:
- fix @VERSION@ processing in man pages - update testing.src.rpm to recent
standard - Allow --spec arg to be used with rebuild option - Disable
use_host_resolv by default - Add support for microdnf [GH#76] - skip running
groupadd if gid is 0 - Allow overriding of mock chroot build user name
(nhorman(a)tuxdriver.com) - do not populate /etc/resolv.conf when networking is
disabled (RHBZ#1514028) - add version to EL check in _prepare_nspawn_command()
- pass force-arch to builddep and resolvedep [GH#120] - Support setting up
foreign architecture chroots - add support for bsdtar - use fedora 28 for tests
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1514028 - do not populate /etc/resolv.conf when networking is disabled
https://bugzilla.redhat.com/show_bug.cgi?id=1514028
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update mock' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: python-texttable-1.3.1-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-aaf3fef3f7
2018-06-29 09:38:23.985426
--------------------------------------------------------------------------------
Name : python-texttable
Product : Fedora EPEL 7
Version : 1.3.1
Release : 1.el7
URL : https://github.com/foutaise/texttable
Summary : Python module to generate a formatted text table, using ASCII characters
Description :
Python module to generate a formatted text table, using ASCII characters.
--------------------------------------------------------------------------------
Update Information:
- Latest upstream - Use shared docdir for both py2 and py3 packages
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1531334 - python-texttable-1.3.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1531334
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-texttable' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: rho-0.0.34-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-8d764c2047
2018-06-29 09:38:23.985364
--------------------------------------------------------------------------------
Name : rho
Product : Fedora EPEL 7
Version : 0.0.34
Release : 1.el7
URL : http://github.com/quipucords/rho
Summary : An SSH system profiler
Description :
Rho is a tool for scanning your network, logging into systems via SSH, and
retrieving information about them.
--------------------------------------------------------------------------------
Update Information:
# Testing Rho To set up Rho, you create profiles that control how to run each
scan. - Authentication profiles contain user credentials for a user with
sufficient authority to complete the scan (for example, a root user or one with
root-level access obtained through -sudo privilege escalation). - Network
profiles contain network identifiers (for example, a hostname, IP address, or
range of IP addresses) and the authentication profiles to be used for a scan.
Complete the following steps, repeating them as necessary to access all parts of
your environment that you want to scan: 1. Create at least one authentication
profile with root-level access to Rho: ``` rho auth add --name auth_name
--username root_name(--sshkeyfile key_file | --password) ``` a. At the Rho
vault password prompt, create a new Rho vault password. This password is
required to access the encrypted Rho data, such as authentication and network
profiles, scan data, and other information. b. If you did not use the
sshkeyfile option to provide an SSH key for the username value, enter the
password of the user with root-level access at the connection password prompt.
For example, for an authentication profile where the authentication profile name
is roothost1, the user with root-level access is root, and the SSH key for the
user is in the path ~/.ssh/id_rsa, you would enter the following command: ```
rho auth add --name roothost1 --username root --sshkeyfile ~/.ssh/id_rsa ``` You
can also use the sudo-password option to create an authentication profile for a
user with root-level access who requires a password to obtain this privilege.
You can use the sudo-password option with either the sshkeyfile or the password
option. For example, for an authentication profile where the authentication
profile name is sudouser1, the user with root-level access is sysadmin, and the
access is obtained through the password option, you would enter the following
command: ``` rho auth add --name sudouser1 --username sysadmin --password
--sudo-password ``` After you enter this command, you are prompted to enter two
passwords. First, you would enter the connection password for the username user,
and then you would enter the password for the sudo command. 2. Create at least
one network profile that specifies one or more network identifiers, such as a
host name, an IP address, a list of IP addresses, or an IP range, and one or
more authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ```
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update rho' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 6 Update: rho-0.0.34-1.el6
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-e4a95c36e5
2018-06-29 08:38:30.522722
--------------------------------------------------------------------------------
Name : rho
Product : Fedora EPEL 6
Version : 0.0.34
Release : 1.el6
URL : http://github.com/quipucords/rho
Summary : An SSH system profiler
Description :
Rho is a tool for scanning your network, logging into systems via SSH, and
retrieving information about them.
--------------------------------------------------------------------------------
Update Information:
# Testing Rho To set up Rho, you create profiles that control how to run each
scan. - Authentication profiles contain user credentials for a user with
sufficient authority to complete the scan (for example, a root user or one with
root-level access obtained through -sudo privilege escalation). - Network
profiles contain network identifiers (for example, a hostname, IP address, or
range of IP addresses) and the authentication profiles to be used for a scan.
Complete the following steps, repeating them as necessary to access all parts of
your environment that you want to scan: 1. Create at least one authentication
profile with root-level access to Rho: ``` rho auth add --name auth_name
--username root_name(--sshkeyfile key_file | --password) ``` a. At the Rho
vault password prompt, create a new Rho vault password. This password is
required to access the encrypted Rho data, such as authentication and network
profiles, scan data, and other information. b. If you did not use the
sshkeyfile option to provide an SSH key for the username value, enter the
password of the user with root-level access at the connection password prompt.
For example, for an authentication profile where the authentication profile name
is roothost1, the user with root-level access is root, and the SSH key for the
user is in the path ~/.ssh/id_rsa, you would enter the following command: ```
rho auth add --name roothost1 --username root --sshkeyfile ~/.ssh/id_rsa ``` You
can also use the sudo-password option to create an authentication profile for a
user with root-level access who requires a password to obtain this privilege.
You can use the sudo-password option with either the sshkeyfile or the password
option. For example, for an authentication profile where the authentication
profile name is sudouser1, the user with root-level access is sysadmin, and the
access is obtained through the password option, you would enter the following
command: ``` rho auth add --name sudouser1 --username sysadmin --password
--sudo-password ``` After you enter this command, you are prompted to enter two
passwords. First, you would enter the connection password for the username user,
and then you would enter the password for the sudo command. 2. Create at least
one network profile that specifies one or more network identifiers, such as a
host name, an IP address, a list of IP addresses, or an IP range, and one or
more authentication profiles to be used for the scan: ``` rho profile add --name
profile_name --hosts host_name_or_file --auth auth_name ``` For example, for a
network profile where the name of the network profile is mynetwork, the network
to be scanned is the 192.0.2.0/24 subnet, and the authentication profiles that
are used to run the scan are roothost1 and roothost2, you would enter the
following command: ``` rho profile add --name mynetwork --hosts 192.0.2.[1:254]
--auth roothost1 roothost2 ``` You can also use a file to pass in the network
identifiers. If you use a file to enter multiple network identifiers, such as
multiple individual IP addresses, enter each on a single line. For example, for
a network profile where the path to this file is /home/user1/hosts_file, you
would enter the following command: ``` rho profile add --name mynetwork --hosts
/home/user1/hosts_file --auth roothost1 roothost2 ``` # Running a scan Run the
scan by using the scan command, specifying a network profile for the profile
option and a location to store the output as a file in the comma-separated
variables (CSV) format for the reportfile option: ``` rho scan --profile
profile_name --reportfile filename.csv ``` For example, if you want to use the
network profile mynetwork and save the report as mynetwork_scan1.csv, you would
enter the following command: ``` rho scan --profile mynetwork --reportfile
mynetwork_scan1.csv ```
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update rho' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: fmf-0.5-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-5aded16adf
2018-06-28 14:47:50.288562
--------------------------------------------------------------------------------
Name : fmf
Product : Fedora EPEL 7
Version : 0.5
Release : 1.el7
URL : https://github.com/psss/fmf
Summary : Flexible Metadata Format
Description :
The fmf Python module and command line tool implement a flexible
format for defining metadata in plain text files which can be
stored close to the source code. Thanks to hierarchical structure
with support for inheritance and elasticity it provides an
efficient way to organize data into well-sized text documents.
This package contains the command line tool.
--------------------------------------------------------------------------------
Update Information:
Tree root, subcommands, inheritance issues - Add support for subcommands [fix
#32] - Define metadata tree root [fix #26] - Enable regular expressions in
--filter [fix #35] - Support merging dictionary values as well - Build Python 3
package for pip as well - Add more detailed logging for easier debugging -
Correctly handle deep inheritance [fix #31] - Load all strings from YAML files
as Unicode - Prevent data modification in filter [fix #30] - Fix inheritance of
scattered files [fix #25]
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update fmf' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: geolite2-20180605-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-df3845ae05
2018-06-28 14:47:50.288550
--------------------------------------------------------------------------------
Name : geolite2
Product : Fedora EPEL 7
Version : 20180605
Release : 1.el7
URL : https://dev.maxmind.com/geoip/geoip2/geolite2/
Summary : Free IP geolocation databases
Description :
GeoLite2 databases are free IP geolocation databases comparable to, but less
accurate than, MaxMind's GeoIP2 databases. This product includes GeoLite2 data
created by MaxMind, available from http://www.maxmind.com.
--------------------------------------------------------------------------------
Update Information:
- Latest upstream
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update geolite2' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: python-dns-lexicon-2.4.0-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-ed42a43993
2018-06-28 14:47:50.288537
--------------------------------------------------------------------------------
Name : python-dns-lexicon
Product : Fedora EPEL 7
Version : 2.4.0
Release : 1.el7
URL : https://github.com/AnalogJ/lexicon
Summary : Manipulate DNS records on various DNS providers in a standardized/agnostic way
Description :
Manipulate DNS records on various DNS providers in
a standardized/agnostic way. Introduction Lexicon provides a way to manipulate
DNS records on multiple DNS providers in a standardized way. Lexicon has a CLI
but it can also be used as a python library.Lexicon was designed to be used
in...
--------------------------------------------------------------------------------
Update Information:
Update to 2.4.0. ---- Update to 2.3.0.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1589596 - python-dns-lexicon-2.4.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1589596
[ 2 ] Bug #1582799 - python-dns-lexicon-2.3.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1582799
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-dns-lexicon' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: python3-jwt-1.6.4-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-c05e751cfd
2018-06-28 14:47:50.288524
--------------------------------------------------------------------------------
Name : python3-jwt
Product : Fedora EPEL 7
Version : 1.6.4
Release : 1.el7
URL : https://github.com/jpadilla/pyjwt
Summary : JSON Web Token implementation in Python
Description :
A Python implementation of JSON Web Token RFC 7519. This library provides a
means of representing signed content using JSON data structures, including
claims to be transferred between two parties encoded as digitally signed and
encrypted JSON objects.
--------------------------------------------------------------------------------
Update Information:
- Initial package
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1588181 - Review Request: python3-jwt - JSON Web Token implementation in Python
https://bugzilla.redhat.com/show_bug.cgi?id=1588181
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python3-jwt' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: php-horde-Horde-Core-2.31.3-1.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-ac4617a8b4
2018-06-28 14:47:50.288510
--------------------------------------------------------------------------------
Name : php-horde-Horde-Core
Product : Fedora EPEL 7
Version : 2.31.3
Release : 1.el7
URL : http://pear.horde.org
Summary : Horde Core Framework libraries
Description :
These classes provide the core functionality of the Horde Application
Framework.
--------------------------------------------------------------------------------
Update Information:
**Horde_Core 2.31.3** * [mjr] Protect against empty imap adapters when no email
support is enabled for EAS (Bug #14820).
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-horde-Horde-Core' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months
Fedora EPEL 7 Update: webextension-token-signing-1.0.6-6.el7
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2018-d3f23f9fe7
2018-06-28 14:47:50.288470
--------------------------------------------------------------------------------
Name : webextension-token-signing
Product : Fedora EPEL 7
Version : 1.0.6
Release : 6.el7
URL : https://github.com/open-eid/chrome-token-signing
Summary : Firefox extension for signing with your eID on the web
Description :
Firefox extension for signing with your eID on the web
--------------------------------------------------------------------------------
Update Information:
- Added install hint and native messaging host files for Chromium
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update webextension-token-signing' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/...
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
4 years, 11 months