This is an experimental copy for testing Poikilos' issue mirroring system. Note that Gitea's migration tool can import issues, but the "Issues" checkbox is disabled when "This repository will be a mirror" is enabled (it is for this repo).
 
 
 
 
 
 

9 lines
199 B

#!/bin/sh
mountpoint=/media/flash
if [ ! -d "$mountpoint" ]; then
sudo mkdir "$mountpoint"
sudo mount /dev/sdb1 "$mountpoint"
df -H
else
echo "FAILED since already mounted at $mountpoint"
fi