@@ -12,29 +12,29 @@ echo "Running as user: $(whoami)"
12
12
# Create mount point if it doesn't exist
13
13
mkdir -p $MOUNT_POINT
14
14
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
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
17
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
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
25
25
26
26
# Create required subdirectories if they don't exist
27
27
mkdir -p $MOUNT_POINT /files
28
28
mkdir -p $MOUNT_POINT /public
29
29
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
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
34
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
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
39
40
- echo " Permissions set for Azure File Share at $MOUNT_POINT "
40
+ # echo "Permissions set for Azure File Share at $MOUNT_POINT"
0 commit comments