2022-06-03 17:24:14 +02:00

9 lines
127 B
Bash

#!/bin/bash
if [ $(id -u) -ne 0 ] ; then
echo "❌ Run me as root"
exit 1
fi
chown -R root:101 bw_data
chmod -R 770 bw_data