mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-22 05:20:28 -08:00
12 lines
131 B
Bash
Executable File
12 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
|