ci / mount-fileshare.shon commit Merge branch 'ms/submodule-foreach-fix' (968eecb)
   1#!/bin/sh
   2
   3die () {
   4        echo "$*" >&2
   5        exit 1
   6}
   7
   8test $# = 4 ||
   9die "Usage: $0 <share> <username> <password> <mountpoint>"
  10
  11mkdir -p "$4" || die "Could not create $4"
  12
  13case "$(uname -s)" in
  14Linux)
  15        sudo mount -t cifs -o vers=3.0,username="$2",password="$3",dir_mode=0777,file_mode=0777,serverino "$1" "$4"
  16        ;;
  17Darwin)
  18        pass="$(echo "$3" | sed -e 's/\//%2F/g' -e 's/+/%2B/g')" &&
  19        mount -t smbfs,soft "smb://$2:$pass@${1#//}" "$4"
  20        ;;
  21*)
  22        die "No support for $(uname -s)"
  23        ;;
  24esac ||
  25die "Could not mount $4"