You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
199 B
15 lines
199 B
#!/bin/bash
|
|
|
|
if [[ -z $1 ]]; then
|
|
echo "Usage: $0 username"
|
|
exit 2
|
|
fi
|
|
|
|
set -e
|
|
|
|
nc-occ user:add "$1"
|
|
|
|
mkdir -p /vol/files/"$1"
|
|
chown www-data:www-data /vol/files/"$1"
|
|
|
|
nc-mntuser "$1"
|
|
|