New upstream version 8.1.0
This commit is contained in:
0
utils/CMakeLists.txt
Normal file
0
utils/CMakeLists.txt
Normal file
2
utils/Readme
Normal file
2
utils/Readme
Normal file
@@ -0,0 +1,2 @@
|
||||
This package contains beegfs-fsck and some helper scripts, which
|
||||
make typical tasks easier for the user/admin.
|
||||
29
utils/build/Makefile
Normal file
29
utils/build/Makefile
Normal file
@@ -0,0 +1,29 @@
|
||||
include ../../build/Makefile
|
||||
|
||||
TARGETS = fsck event_listener
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
export BEEGFS_COMMON_PATH
|
||||
export BEEGFS_THIRDPARTY_PATH
|
||||
export BEEGFS_EVENT_LISTENER_PATH
|
||||
export BEEGFS_VERSION
|
||||
export BEEGFS_DEBUG
|
||||
|
||||
fsck:
|
||||
$(MAKE) -C $(BEEGFS_FSCK_PATH)/build
|
||||
cp $(BEEGFS_FSCK_PATH)/build/beegfs-fsck .
|
||||
|
||||
event_listener:
|
||||
$(MAKE) -C $(BEEGFS_EVENT_LISTENER_PATH)/build
|
||||
cp $(BEEGFS_EVENT_LISTENER_PATH)/build/beegfs-event-listener .
|
||||
|
||||
clean: clean-siblings
|
||||
|
||||
clean-siblings:
|
||||
$(MAKE) -C $(BEEGFS_ONLINE_CFG_PATH)/build clean
|
||||
$(MAKE) -C $(BEEGFS_FSCK_PATH)/build clean
|
||||
$(MAKE) -C $(BEEGFS_EVENT_LISTENER_PATH)/build clean
|
||||
|
||||
rm -f beegfs-fsck
|
||||
rm -f beegfs-event-listener
|
||||
6
utils/scripts/fsck.beegfs
Normal file
6
utils/scripts/fsck.beegfs
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# License: BeeGFS EULA
|
||||
|
||||
# only a dummy file at the moment
|
||||
# will be a wrapper for beegfs-fsck
|
||||
Reference in New Issue
Block a user