mirror of
https://github.com/ceph/ceph
synced 2024-12-18 17:37:38 +00:00
c5b557ee88
Signed-off-by: Sage Weil <sage@inktank.com>
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.
|