Fix 'secret' variable - see issue : https://github.com/abeudin/ffsync_ynh/issues/17
This commit is contained in:
@@ -10,7 +10,7 @@ if [[ ! $? -eq 0 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Generate random passworid
|
||||
# Generate random password
|
||||
db_pwd=$(head -c 8 /dev/urandom | sha1sum | cut -d " " -f1)
|
||||
|
||||
# Use 'FSyncMS' as database name and user
|
||||
@@ -20,6 +20,10 @@ db_user=ffsync
|
||||
sudo yunohost app initdb $db_user -p $db_pwd
|
||||
sudo yunohost app setting ffsync mysqlpwd -v $db_pwd
|
||||
|
||||
# Generate random password and save
|
||||
secret=$(head -c 20 /dev/urandom | sha1sum | cut -d " " -f1)
|
||||
sudo yunohost app setting $app secret -v $secret
|
||||
|
||||
# Check depends installation
|
||||
sudo apt-get install make python-dev python-virtualenv -y
|
||||
|
||||
@@ -54,7 +58,6 @@ 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)
|
||||
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
||||
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
|
||||
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/ffsync.conf
|
||||
|
||||
Reference in New Issue
Block a user