Displaying 5 results from an estimated 5 matches for "bbbe4b2".
Did you mean:
0bbe4b1
2016 Nov 30
2
[PATCH] packagelist: add initviocons package on SUSE
...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 Nov 30
0
Re: [PATCH] packagelist: add initviocons package on SUSE
...> 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're d...
2016 Dec 18
0
[PATCH v3 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 bbbe4b2..352133c 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
li...
2016 Dec 02
0
[PATCH] New API: cryptsetup_reencrypt: change the master volume key on LUKS partitions.
...| 46 ++++++++++++++++++++++++++++++++++++++++++++++
generator/actions.ml | 18 ++++++++++++++++++
gobject/Makefile.inc | 2 ++
src/MAX_PROC_NR | 2 +-
5 files changed, 68 insertions(+), 1 deletion(-)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index bbbe4b2..485e9cd 100644
--- a/appliance/packagelist.in
+++ b/appliance/packagelist.in
@@ -26,6 +26,7 @@ ifelse(REDHAT,1,
augeas-libs
cryptsetup
cryptsetup-luks dnl old name used before Fedora 17
+ cryptsetup-reencrypt
dhclient
genisoimage
gfs-utils
diff --git a/daemon/luks.c b/daemo...
2016 Dec 18
6
[PATCH v3 0/6] Feature: Yara file scanning
v3:
- allow to load multiple rule files
- added optional namespace parameter to yara_load
- move destructor logic in yara module
- use generic file upload logic
- use generic temporary path function
Matteo Cafasso (6):
appliance: add yara dependency
New API: yara_load
New API: yara_destroy
New API: internal_yara_scan
New API: yara_scan
yara_scan: added API tests