mirror of
https://github.com/RasppleII/a2server.git
synced 2024-12-23 08:29:50 +00:00
13ad54c876
Reflowed the scripts (mostly) according to vim's autoindent engine. Also added vim modelines so that people who are familiar with them can configure their environment for A2SERVER's conventions. Also removed trailing whitespace from lines and files while I was at it to make git happier about various things.
21 lines
378 B
Bash
21 lines
378 B
Bash
#! /bin/bash
|
|
# vim: set tabstop=4 shiftwidth=4 expandtab filetype=sh:
|
|
|
|
# --- Setting up the share volume
|
|
|
|
|
|
# skip if we're already set up
|
|
if [[ -d /media/A2SHARED ]]; then
|
|
|
|
echo "A2SERVER: Shared disk is already prepared for use."
|
|
|
|
else
|
|
|
|
echo "A2SERVER: Preparing the shared files disk..."
|
|
|
|
sudo mkdir /media/A2SHARED
|
|
|
|
sudo chown $USER:$USER /media/A2SHARED
|
|
|
|
fi
|