mirror of
https://github.com/ceph/ceph
synced 2024-12-11 22:18:18 +00:00
62024d0448
Signed-off-by: Sage Weil <sage@newdream.net>
12 lines
141 B
Bash
Executable File
12 lines
141 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
touch file
|
|
|
|
setfattr -n user.bare -v bare file
|
|
setfattr -n user.bar -v bar file
|
|
getfattr -d file | grep bare
|
|
|
|
echo OK.
|