Displaying 7 results from an estimated 7 matches for "f278f66".
Did you mean:
27866
2016 Nov 30
2
[PATCH] packagelist: add initviocons package on SUSE
...provides tools to resize the terminal. Having it
in the appliance will allow SUSE users to have proper line wrapping
in their terminal when using virt-rescue.
---
appliance/packagelist.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index f278f66..bbbe4b2 100644
--- a/appliance/packagelist.in
+++ b/appliance/packagelist.in
@@ -139,6 +139,7 @@ ifelse(SUSE,1,
glibc-locale
gptfdisk
hivex
+ initviocons
iproute2
iputils
libcap2
--
2.10.2
2016 Oct 06
1
[PATCH] appliance: add/remove some packages for Arch Linux
...by ntfs-3g (already in packagelist.in)
- zfs-fuse: no longer in AUR
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
---
appliance/packagelist.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index 77bd464..f278f66 100644
--- a/appliance/packagelist.in
+++ b/appliance/packagelist.in
@@ -102,6 +102,7 @@ dnl iproute has been renamed to iproute2
ifelse(ARCHLINUX,1,
augeas
cdrkit
+ cdrtools
cryptsetup
dhcpcd
gptfdisk
@@ -115,8 +116,8 @@ ifelse(ARCHLINUX,1,
dnl syslinux has mtools as optional d...
2016 Nov 02
0
[PATCH 1/6] appliance: add libyara dependency
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
appliance/packagelist.in | 1 +
daemon/Makefile.am | 3 ++-
m4/guestfs_daemon.m4 | 8 ++++++++
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index f278f66..5982df8 100644
--- a/appliance/packagelist.in
+++ b/appliance/packagelist.in
@@ -232,6 +232,7 @@ jfsutils
kmod
less
libxml2
+libyara3
lsof
lsscsi
lvm2
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 23f60eb..3a25f43 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -222,...
2016 Nov 09
0
[PATCH v2 1/6] appliance: add yara dependency
...Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
appliance/packagelist.in | 4 ++++
daemon/Makefile.am | 3 ++-
m4/guestfs_daemon.m4 | 14 ++++++++++++++
3 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index f278f66..2da7533 100644
--- a/appliance/packagelist.in
+++ b/appliance/packagelist.in
@@ -51,6 +51,7 @@ ifelse(REDHAT,1,
vim-minimal
xz
yajl
+ yara
zfs-fuse
)
@@ -83,6 +84,7 @@ dnl iproute has been renamed to iproute2
libsystemd-id128-0
libsystemd-journal0
libyajl2
+ libyara3
l...
2016 Nov 30
0
Re: [PATCH] packagelist: add initviocons package on SUSE
...Having it
> in the appliance will allow SUSE users to have proper line wrapping
> in their terminal when using virt-rescue.
> ---
> appliance/packagelist.in | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/appliance/packagelist.in b/appliance/packagelist.in
> index f278f66..bbbe4b2 100644
> --- a/appliance/packagelist.in
> +++ b/appliance/packagelist.in
> @@ -139,6 +139,7 @@ ifelse(SUSE,1,
> glibc-locale
> gptfdisk
> hivex
> + initviocons
> iproute2
> iputils
> libcap2
This patch is fine, ACK.
I don't know if you...
2016 Nov 02
8
[PATCH 0/6] Feature: Yara file scanning
Yara is a rule based scanning engine aimed to help malware analysts in finding and classifying interesting samples.
https://github.com/VirusTotal/yara
This series adds Yara support to Libguestfs allowing to upload sets of rules and scanning files against them.
Currently provided APIs:
- yara_load: loads a set of rules
- yara_destroy: free resources allocated by loaded rules
- yara_scan:
2016 Nov 09
9
[PATCH v2 0/6] Feature: Yara file scanning
v2:
- Fix yara dependency in packagelist
- Use pkg-config where available
- Improve longdesc of yara_load API
- Fix libyara initialization and finalization
- Import CLEANUP_FCLOSE
- Add custom CLEANUP_DESTROY_YARA_COMPILER
- Add rules compilation error callback
- Other small fixes according to comments
Matteo Cafasso (6):
appliance: add yara dependency
New API: yara_load
New API: