mirror of
https://github.com/RasppleII/a2server.git
synced 2025-02-03 22:34:30 +00:00
19 lines
329 B
Bash
19 lines
329 B
Bash
#!/bin/bash
|
|
|
|
# --- Setting up the share volume
|
|
|
|
|
|
# skip if we're already set up
|
|
if [[ -d /srv/A2SERVER ]]; then
|
|
|
|
echo "A2SERVER: Shared disk is already prepared for use."
|
|
|
|
else
|
|
|
|
echo "A2SERVER: Preparing the shared files disk..."
|
|
|
|
sudo mkdir /srv/A2SERVER
|
|
|
|
sudo chown $USER:$USER /srv/A2SERVER
|
|
|
|
fi |