mirror of
https://github.com/YunoHost-Apps/ffsync_ynh.git
synced 2024-09-03 18:26:38 +02:00
[fix] do not use $final_path before it is defined
This commit is contained in:
parent
7df9f017d7
commit
1fa30a87ff
1 changed files with 2 additions and 4 deletions
|
@ -33,9 +33,6 @@ then
|
|||
sudo swapon $tmp_swap_file
|
||||
fi
|
||||
|
||||
# Create ffsync user
|
||||
sudo useradd ffsync -d $final_path
|
||||
|
||||
# Copy files to the right place
|
||||
final_path=/opt/yunohost/ffsync
|
||||
sudo mkdir -p $final_path
|
||||
|
@ -43,10 +40,11 @@ sudo cp -a ../sources/* $final_path
|
|||
sudo cp ../conf/ffsync /etc/init.d/
|
||||
sudo cp ../conf/ffsync.logrotate /etc/logrotate.d/ffsync
|
||||
sudo touch /var/log/ffsync.log
|
||||
sudo chown ffsync /var/log/ffsync.log
|
||||
|
||||
# Set permissions to ffsync directory
|
||||
sudo useradd ffsync -d $final_path
|
||||
sudo chown ffsync:ffsync -R $final_path
|
||||
sudo chown ffsync /var/log/ffsync.log
|
||||
|
||||
# Modify Nginx configuration file and copy it to Nginx conf directory
|
||||
secret=$(head -c 20 /dev/urandom | sha1sum | cut -d " " -f1)
|
||||
|
|
Loading…
Reference in a new issue