2006-11-20 23:03:26 +03:00
#
2021-08-23 15:02:42 +03:00
# Copyright (C) 2006-2021 Red Hat, Inc. All rights reserved.
2006-11-20 23:03:26 +03:00
#
2007-09-21 14:16:45 +04:00
# This file is part of LVM2.
2006-11-20 23:03:26 +03:00
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2006-11-20 23:03:26 +03:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
2009-10-02 23:10:31 +04:00
top_builddir = @top_builddir@
2006-11-20 23:03:26 +03:00
2010-03-04 12:51:37 +03:00
i n c l u d e $( top_builddir ) / m a k e . t m p l
2006-11-20 23:03:26 +03:00
2017-08-01 19:17:06 +03:00
i f e q ( "@BUILD_DMEVENTD@" , "yes" )
2015-10-14 01:51:55 +03:00
LDFLAGS += -Wl,-rpath-link,$( top_builddir) /daemons/dmeventd
2015-10-13 23:02:17 +03:00
e n d i f
2012-07-31 18:46:24 +04:00
2018-09-13 19:02:53 +03:00
LVM_SCRIPTS = lvmdump.sh
2015-04-14 16:21:22 +03:00
DM_SCRIPTS =
2012-07-31 18:46:24 +04:00
2008-11-01 05:19:19 +03:00
i f e q ( "@FSADM@" , "yes" )
2015-04-14 16:21:22 +03:00
LVM_SCRIPTS += fsadm.sh
2008-11-01 05:19:19 +03:00
e n d i f
2009-03-16 21:28:04 +03:00
2021-08-23 15:02:42 +03:00
i f e q ( "@LVMIMPORTVDO@" , "yes" )
2021-08-26 17:53:33 +03:00
LVM_SCRIPTS += lvm_import_vdo.sh
2021-07-09 15:44:07 +03:00
e n d i f
2012-10-12 16:37:57 +04:00
i f e q ( "@BLKDEACTIVATE@" , "yes" )
2015-04-14 16:21:22 +03:00
DM_SCRIPTS += blkdeactivate.sh
2012-10-12 16:37:57 +04:00
e n d i f
2010-11-05 19:18:38 +03:00
OCF_SCRIPTS =
i f e q ( "@OCF@" , "yes" )
OCF_SCRIPTS += VolumeGroup.ocf
e n d i f
2010-04-10 01:42:48 +04:00
v p a t h % . s h $( srcdir )
2011-09-25 01:05:03 +04:00
v p a t h % . o c f $( srcdir )
2010-04-10 01:42:48 +04:00
%_install : %.sh
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_PROGRAM) -D $< $( sbindir) /$( basename $( <F) )
2010-04-10 01:42:48 +04:00
2010-11-05 19:18:38 +03:00
%_install : %.ocf
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( ocf_scriptdir)
$( Q) $( INSTALL_SCRIPT) $< $( ocf_scriptdir) /$( basename $( <F) )
2010-11-05 19:18:38 +03:00
2023-08-15 10:45:20 +03:00
install_lvm2 : install_libexec $( LVM_SCRIPTS :.sh =_install )
2015-04-14 16:21:22 +03:00
install_device-mapper : $( DM_SCRIPTS :.sh =_install )
2010-04-10 01:42:48 +04:00
2010-11-05 19:18:38 +03:00
install_ocf : $( OCF_SCRIPTS :.ocf =_install )
lvresize: add new options and defaults for fs handling
The new option "--fs String" for lvresize/lvreduce/lvextend
controls the handling of file systems before/after resizing
the LV. --resizefs is the same as --fs resize.
The new option "--fsmode String" can be used to control
mounting and unmounting of the fs during resizing.
Possible --fs values:
checksize
Only applies to reducing size; does nothing for extend.
Check the fs size and reduce the LV if the fs is not using
the affected space, i.e. the fs does not need to be shrunk.
Fail the command without reducing the fs or LV if the fs is
using the affected space.
resize
Resize the fs using the fs-specific resize command.
This may include mounting, unmounting, or running fsck.
See --fsmode to control mounting behavior, and --nofsck to
disable fsck.
resize_fsadm
Use the old method of calling fsadm to handle the fs
(deprecated.) Warning: this option does not prevent lvreduce
from destroying file systems that are unmounted (or mounted
if prompts are skipped.)
ignore
Resize the LV without checking for or handling a file system.
Warning: using ignore when reducing the LV size may destroy the
file system.
Possible --fsmode values:
manage
Mount or unmount the fs as needed to resize the fs,
and attempt to restore the original mount state at the end.
nochange
Do not mount or unmount the fs. If mounting or unmounting
is required to resize the fs, then do not resize the fs or
the LV and fail the command.
offline
Unmount the fs if it is mounted, and resize the fs while it
is unmounted. If mounting is required to resize the fs,
then do not resize the fs or the LV and fail the command.
Notes on lvreduce:
When no --fs or --resizefs option is specified:
. lvextend default behavior is fs ignore.
. lvreduce default behavior is fs checksize
(includes activating the LV.)
With the exception of --fs resize_fsadm|ignore, lvreduce requires
the recent libblkid fields FSLASTBLOCK and FSBLOCKSIZE.
FSLASTBLOCK*FSBLOCKSIZE is the last byte used by the fs on the LV,
which determines if reducing the fs is necessary.
2022-06-14 23:20:21 +03:00
install_libexec :
2022-09-20 16:56:13 +03:00
$( Q) $( INSTALL_DIR) $( libexecdir)
lvresize: add new options and defaults for fs handling
The new option "--fs String" for lvresize/lvreduce/lvextend
controls the handling of file systems before/after resizing
the LV. --resizefs is the same as --fs resize.
The new option "--fsmode String" can be used to control
mounting and unmounting of the fs during resizing.
Possible --fs values:
checksize
Only applies to reducing size; does nothing for extend.
Check the fs size and reduce the LV if the fs is not using
the affected space, i.e. the fs does not need to be shrunk.
Fail the command without reducing the fs or LV if the fs is
using the affected space.
resize
Resize the fs using the fs-specific resize command.
This may include mounting, unmounting, or running fsck.
See --fsmode to control mounting behavior, and --nofsck to
disable fsck.
resize_fsadm
Use the old method of calling fsadm to handle the fs
(deprecated.) Warning: this option does not prevent lvreduce
from destroying file systems that are unmounted (or mounted
if prompts are skipped.)
ignore
Resize the LV without checking for or handling a file system.
Warning: using ignore when reducing the LV size may destroy the
file system.
Possible --fsmode values:
manage
Mount or unmount the fs as needed to resize the fs,
and attempt to restore the original mount state at the end.
nochange
Do not mount or unmount the fs. If mounting or unmounting
is required to resize the fs, then do not resize the fs or
the LV and fail the command.
offline
Unmount the fs if it is mounted, and resize the fs while it
is unmounted. If mounting is required to resize the fs,
then do not resize the fs or the LV and fail the command.
Notes on lvreduce:
When no --fs or --resizefs option is specified:
. lvextend default behavior is fs ignore.
. lvreduce default behavior is fs checksize
(includes activating the LV.)
With the exception of --fs resize_fsadm|ignore, lvreduce requires
the recent libblkid fields FSLASTBLOCK and FSBLOCKSIZE.
FSLASTBLOCK*FSBLOCKSIZE is the last byte used by the fs on the LV,
which determines if reducing the fs is necessary.
2022-06-14 23:20:21 +03:00
$( Q) $( INSTALL_SCRIPT) lvresize_fs_helper.sh $( libexecdir) /lvresize_fs_helper
2023-08-15 10:45:20 +03:00
install : install_lvm 2 install_ocf install_device -mapper
lvresize: add new options and defaults for fs handling
The new option "--fs String" for lvresize/lvreduce/lvextend
controls the handling of file systems before/after resizing
the LV. --resizefs is the same as --fs resize.
The new option "--fsmode String" can be used to control
mounting and unmounting of the fs during resizing.
Possible --fs values:
checksize
Only applies to reducing size; does nothing for extend.
Check the fs size and reduce the LV if the fs is not using
the affected space, i.e. the fs does not need to be shrunk.
Fail the command without reducing the fs or LV if the fs is
using the affected space.
resize
Resize the fs using the fs-specific resize command.
This may include mounting, unmounting, or running fsck.
See --fsmode to control mounting behavior, and --nofsck to
disable fsck.
resize_fsadm
Use the old method of calling fsadm to handle the fs
(deprecated.) Warning: this option does not prevent lvreduce
from destroying file systems that are unmounted (or mounted
if prompts are skipped.)
ignore
Resize the LV without checking for or handling a file system.
Warning: using ignore when reducing the LV size may destroy the
file system.
Possible --fsmode values:
manage
Mount or unmount the fs as needed to resize the fs,
and attempt to restore the original mount state at the end.
nochange
Do not mount or unmount the fs. If mounting or unmounting
is required to resize the fs, then do not resize the fs or
the LV and fail the command.
offline
Unmount the fs if it is mounted, and resize the fs while it
is unmounted. If mounting is required to resize the fs,
then do not resize the fs or the LV and fail the command.
Notes on lvreduce:
When no --fs or --resizefs option is specified:
. lvextend default behavior is fs ignore.
. lvreduce default behavior is fs checksize
(includes activating the LV.)
With the exception of --fs resize_fsadm|ignore, lvreduce requires
the recent libblkid fields FSLASTBLOCK and FSBLOCKSIZE.
FSLASTBLOCK*FSBLOCKSIZE is the last byte used by the fs on the LV,
which determines if reducing the fs is necessary.
2022-06-14 23:20:21 +03:00
2009-05-11 14:35:00 +04:00
2010-05-20 18:45:14 +04:00
# FIXME Customise for other distributions
install_initscripts :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] initscripts"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( initdir)
2012-02-23 15:13:18 +04:00
i f e q ( "@BUILD_DMEVENTD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) lvm2_monitoring_init_red_hat $( initdir) /lvm2-monitor
2012-02-23 15:13:18 +04:00
e n d i f
2015-05-09 02:59:18 +03:00
i f e q ( "@BUILD_LVMPOLLD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) lvm2_lvmpolld_init_red_hat $( initdir) /lvm2-lvmpolld
2015-05-09 02:59:18 +03:00
e n d i f
2010-05-20 18:45:14 +04:00
i f e q ( "@BUILD_CMIRRORD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) cmirrord_init_red_hat $( initdir) /cmirrord
2010-05-20 18:45:14 +04:00
e n d i f
2012-10-12 16:37:57 +04:00
i f e q ( "@BLKDEACTIVATE@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) blk_availability_init_red_hat $( initdir) /blk-availability
2012-10-12 16:37:57 +04:00
e n d i f
2010-05-20 18:45:14 +04:00
2016-02-18 02:53:35 +03:00
install_systemd_units : install_dbus_service
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] systemd_units"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( systemd_unit_dir)
2012-02-23 15:13:18 +04:00
i f e q ( "@BUILD_DMEVENTD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) dm_event_systemd_red_hat.socket $( systemd_unit_dir) /dm-event.socket
$( Q) $( INSTALL_DATA) dm_event_systemd_red_hat.service $( systemd_unit_dir) /dm-event.service
$( Q) $( INSTALL_DATA) lvm2_monitoring_systemd_red_hat.service $( systemd_unit_dir) /lvm2-monitor.service
2012-02-23 15:13:18 +04:00
e n d i f
2012-10-12 16:37:57 +04:00
i f e q ( "@BLKDEACTIVATE@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) blk_availability_systemd_red_hat.service $( systemd_unit_dir) /blk-availability.service
2012-10-12 16:37:57 +04:00
e n d i f
2015-05-09 02:59:18 +03:00
i f e q ( "@BUILD_LVMPOLLD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvm2_lvmpolld_systemd_red_hat.socket $( systemd_unit_dir) /lvm2-lvmpolld.socket
$( Q) $( INSTALL_DATA) lvm2_lvmpolld_systemd_red_hat.service $( systemd_unit_dir) /lvm2-lvmpolld.service
2015-05-09 02:59:18 +03:00
e n d i f
2015-03-05 23:00:44 +03:00
i f e q ( "@BUILD_LVMLOCKD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvmlockd.service $( systemd_unit_dir) /lvmlockd.service
$( Q) $( INSTALL_DATA) lvmlocks.service $( systemd_unit_dir) /lvmlocks.service
2015-03-05 23:00:44 +03:00
e n d i f
2014-02-11 12:55:57 +04:00
i f e q ( "@BUILD_CMIRRORD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvm2_cmirrord_systemd_red_hat.service $( systemd_unit_dir) /lvm2-cmirrord.service
2014-02-11 12:55:57 +04:00
e n d i f
2016-02-18 02:53:35 +03:00
i f e q ( "@BUILD_LVMDBUSD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvm2_lvmdbusd_systemd_red_hat.service $( systemd_unit_dir) /lvm2-lvmdbusd.service
2016-02-18 02:53:35 +03:00
e n d i f
i f e q ( "@BUILD_LVMDBUSD@" , "yes" )
install_dbus_service :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] dbus_service"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( dbusconfdir)
$( Q) $( INSTALL_DIR) $( dbusservicedir)
$( Q) $( INSTALL_DATA) $( top_srcdir) /scripts/com.redhat.lvmdbus1.conf $( dbusconfdir)
$( Q) $( INSTALL_DATA) com.redhat.lvmdbus1.service $( dbusservicedir)
2016-02-18 02:53:35 +03:00
install_systemd_units : install_dbus_service
e n d i f
2011-07-28 16:57:26 +04:00
2012-02-22 21:55:10 +04:00
install_tmpfiles_configuration :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] configuration"
2018-12-15 03:47:24 +03:00
$( Q) $( INSTALL_DIR) $( tmpfiles_dir)
$( Q) $( INSTALL_DATA) lvm2_tmpfiles_red_hat.conf $( tmpfiles_dir) /lvm2.conf
2012-02-22 21:55:10 +04:00
2014-05-07 14:13:36 +04:00
DISTCLEAN_TARGETS += \
2014-04-17 12:01:05 +04:00
blkdeactivate.sh \
blk_availability_init_red_hat \
blk_availability_systemd_red_hat.service \
clvmd_init_red_hat \
cmirrord_init_red_hat \
2016-06-02 12:58:54 +03:00
com.redhat.lvmdbus1.service \
2014-04-17 12:01:05 +04:00
dm_event_systemd_red_hat.service \
dm_event_systemd_red_hat.socket \
2016-09-23 13:48:52 +03:00
lvmdump.sh \
2018-12-17 04:04:11 +03:00
lvm2-pvscan.service \
2014-04-17 12:01:05 +04:00
lvm2_cluster_activation_red_hat.sh \
lvm2_cluster_activation_systemd_red_hat.service \
lvm2_clvmd_systemd_red_hat.service \
lvm2_cmirrord_systemd_red_hat.service \
2016-06-02 12:58:54 +03:00
lvm2_lvmdbusd_systemd_red_hat.service \
2015-09-11 22:30:45 +03:00
lvm2_lvmpolld_init_red_hat \
2015-05-09 02:59:18 +03:00
lvm2_lvmpolld_systemd_red_hat.service \
lvm2_lvmpolld_systemd_red_hat.socket \
2018-09-13 19:02:53 +03:00
lvmlockd.service \
lvmlocks.service \
2014-04-17 12:01:05 +04:00
lvm2_monitoring_init_red_hat \
lvm2_monitoring_systemd_red_hat.service \
lvm2_pvscan_systemd_red_hat@.service \
lvm2_tmpfiles_red_hat.conf
2018-07-01 16:01:41 +03:00
# Remove ancient files
DISTCLEAN_TARGETS += \
lvm2_lvmlocking_systemd_red_hat.service