- adjust fs size to correct size (bnc#744593) - man page documentation updates - do not package obsolete utilities - mkfs: store correct size of device in superblock (bnc#730103) - updated restriper/balance commands to match kernel version - device scanning fixes for dm and multipath (bnc#749540) OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=121
11 lines
394 B
Bash
11 lines
394 B
Bash
#!/bin/bash -e
|
|
#%stage: filesystem
|
|
#%if: -x /usr/sbin/btrfs
|
|
#%programs: /sbin/btrfs /sbin/btrfs-zero-log /sbin/btrfs-convert /sbin/btrfs-select-super /sbin/btrfs-image /sbin/btrfstune /sbin/btrfs-restore /sbin/btrfs-find-root /sbin/btrfsck /sbin/mkfs.btrfs /sbin/btrfs-dump-super /sbin/btrfs-debug-tree
|
|
|
|
modprobe btrfs
|
|
|
|
if [ -x /usr/sbin/btrfs ]; then
|
|
/usr/sbin/btrfs dev scan >& /dev/null
|
|
fi
|