mirror of
https://github.com/ceph/ceph
synced 2025-01-10 05:00:59 +00:00
12 lines
141 B
Bash
12 lines
141 B
Bash
|
#!/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.
|