ee606b1ccf
New package. OBS-URL: https://build.opensuse.org/request/show/664199 OBS-URL: https://build.opensuse.org/package/show/Base:System/filesystem-media?expand=0&rev=1
9 lines
140 B
Bash
9 lines
140 B
Bash
#!/bin/sh
|
|
|
|
if [ "$3" = 1 ]; then
|
|
chmod 755 /run/media
|
|
chmod 750 "$2"
|
|
setfacl -m "u:$4:rx" -m "g::-" "$2"
|
|
mount --make-rshared /media
|
|
fi
|