mirror of
https://github.com/myvesta/vesta
synced 2025-07-05 20:41:53 -07:00
11 lines
131 B
Bash
Executable file
11 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
# Changing public_html permission
|
|
user="$1"
|
|
domain="$2"
|
|
ip="$3"
|
|
home_dir="$4"
|
|
docroot="$5"
|
|
|
|
chmod 755 $docroot
|
|
|
|
exit 0
|