|
9 | 9 | # Print the current user (ensure this script is running as root)
|
10 | 10 | echo "Running as user: $(whoami)"
|
11 | 11 |
|
| 12 | +# log in to azure cli |
| 13 | +az login --identity |
| 14 | + |
12 | 15 | # Create mount point if it doesn't exist
|
13 | 16 | mkdir -p $MOUNT_POINT
|
14 | 17 |
|
15 |
| -# Mount Azure File Share using the storage account key |
16 |
| -mount -t cifs //$AZURE_STORAGE_ACCOUNT_NAME.file.core.windows.net/$AZURE_FILE_SHARE_NAME $MOUNT_POINT -o vers=3.0,username=$AZURE_STORAGE_ACCOUNT_NAME,password=$AZURE_STORAGE_ACCOUNT_KEY,uid=apache,gid=www-data,dir_mode=0750,file_mode=0640,serverino |
17 | 18 |
|
18 |
| -# Ensure the mount is successful |
19 |
| -if mountpoint -q $MOUNT_POINT; then |
20 |
| - echo "Azure File Share mounted successfully at $MOUNT_POINT" |
21 |
| -else |
22 |
| - echo "Failed to mount Azure File Share at $MOUNT_POINT" |
23 |
| - exit 1 |
24 |
| -fi |
| 19 | +# # Mount Azure File Share using the storage account key |
| 20 | +# mount -t cifs //$AZURE_STORAGE_ACCOUNT_NAME.file.core.windows.net/$AZURE_FILE_SHARE_NAME $MOUNT_POINT -o vers=3.0,username=$AZURE_STORAGE_ACCOUNT_NAME,password=$AZURE_STORAGE_ACCOUNT_KEY,uid=apache,gid=www-data,dir_mode=0750,file_mode=0640,serverino |
| 21 | + |
| 22 | +# # Ensure the mount is successful |
| 23 | +# if mountpoint -q $MOUNT_POINT; then |
| 24 | +# echo "Azure File Share mounted successfully at $MOUNT_POINT" |
| 25 | +# else |
| 26 | +# echo "Failed to mount Azure File Share at $MOUNT_POINT" |
| 27 | +# exit 1 |
| 28 | +# fi |
25 | 29 |
|
26 |
| -# Create required subdirectories if they don't exist |
27 |
| -mkdir -p $MOUNT_POINT/files |
28 |
| -mkdir -p $MOUNT_POINT/public |
| 30 | +# # Create required subdirectories if they don't exist |
| 31 | +# mkdir -p $MOUNT_POINT/files |
| 32 | +# mkdir -p $MOUNT_POINT/public |
29 | 33 |
|
30 |
| -# Set permissions for the mounted directories |
31 |
| -chown -R apache:www-data $MOUNT_POINT/files |
32 |
| -find $MOUNT_POINT/files -type d -exec chmod 750 {} \; # for directories |
33 |
| -find $MOUNT_POINT/files -type f -exec chmod 640 {} \; # for files |
| 34 | +# # Set permissions for the mounted directories |
| 35 | +# chown -R apache:www-data $MOUNT_POINT/files |
| 36 | +# find $MOUNT_POINT/files -type d -exec chmod 750 {} \; # for directories |
| 37 | +# find $MOUNT_POINT/files -type f -exec chmod 640 {} \; # for files |
34 | 38 |
|
35 |
| -# Ensure that $MOUNT_POINT/public is accessible to the web server |
36 |
| -chown -R apache:www-data $MOUNT_POINT/public |
37 |
| -find $MOUNT_POINT/public -type d -exec chmod 750 {} \; # for directories |
38 |
| -find $MOUNT_POINT/public -type f -exec chmod 640 {} \; # for files |
| 39 | +# # Ensure that $MOUNT_POINT/public is accessible to the web server |
| 40 | +# chown -R apache:www-data $MOUNT_POINT/public |
| 41 | +# find $MOUNT_POINT/public -type d -exec chmod 750 {} \; # for directories |
| 42 | +# find $MOUNT_POINT/public -type f -exec chmod 640 {} \; # for files |
39 | 43 |
|
40 |
| -echo "Permissions set for Azure File Share at $MOUNT_POINT" |
| 44 | +# echo "Permissions set for Azure File Share at $MOUNT_POINT" |
0 commit comments