You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
134 B
13 lines
134 B
1 year ago
|
#!/bin/bash
|
||
|
# Changing public_html permission
|
||
|
|
||
|
user="$1"
|
||
|
domain="$2"
|
||
|
ip="$3"
|
||
|
home_dir="$4"
|
||
|
docroot="$5"
|
||
|
|
||
|
chmod 755 "$docroot"
|
||
|
|
||
|
exit 0
|