mirror of
https://github.com/ceph/ceph
synced 2024-12-29 23:12:27 +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.
|