mirror of https://gitee.com/openkylin/libvirt.git
tools: Fix install_mode for some scripts
Scripts from the following list were installed with group write bit set: virt-xml-validate, virt-pki-validate, virt-sanlock-cleanup, libvirt-guests.sh. This is very unusual and in contrast with the way other scripts/binaries are installed. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2151202 Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
4b29d5c4f5
commit
e771e32f15
|
@ -249,7 +249,7 @@ configure_file(
|
|||
configuration: tools_conf,
|
||||
install: true,
|
||||
install_dir: bindir,
|
||||
install_mode: 'rwxrwxr-x',
|
||||
install_mode: 'rwxr-xr-x',
|
||||
)
|
||||
|
||||
configure_file(
|
||||
|
@ -258,7 +258,7 @@ configure_file(
|
|||
configuration: tools_conf,
|
||||
install: true,
|
||||
install_dir: bindir,
|
||||
install_mode: 'rwxrwxr-x',
|
||||
install_mode: 'rwxr-xr-x',
|
||||
)
|
||||
|
||||
executable(
|
||||
|
@ -295,7 +295,7 @@ if conf.has('WITH_SANLOCK')
|
|||
configuration: tools_conf,
|
||||
install: true,
|
||||
install_dir: sbindir,
|
||||
install_mode: 'rwxrwxr-x',
|
||||
install_mode: 'rwxr-xr-x',
|
||||
)
|
||||
endif
|
||||
|
||||
|
@ -311,7 +311,7 @@ if conf.has('WITH_LIBVIRTD')
|
|||
configuration: tools_conf,
|
||||
install: true,
|
||||
install_dir: libexecdir,
|
||||
install_mode: 'rwxrwxr-x',
|
||||
install_mode: 'rwxr-xr-x',
|
||||
)
|
||||
|
||||
if init_script == 'systemd'
|
||||
|
|
Loading…
Reference in New Issue