mirror of
https://github.com/YunoHost-Apps/ffsync_ynh.git
synced 2024-09-03 18:26:38 +02:00
commit
6707f664bb
3 changed files with 19 additions and 4 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
# From kateproject
|
||||
.kateproject
|
||||
.kateproject.d
|
||||
.directory
|
||||
|
|
@ -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 ffsync 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
|
||||
|
|
|
@ -5,8 +5,16 @@ domain=$(sudo yunohost app setting ffsync domain)
|
|||
path=$(sudo yunohost app setting ffsync path)
|
||||
db_pwd=$(sudo yunohost app setting ffsync mysqlpwd)
|
||||
db_user=ffsync
|
||||
final_path=/opt/yunohost/ffsync
|
||||
|
||||
|
||||
# Get secret variable
|
||||
secret=$(sudo yunohost app setting ffsync secret)
|
||||
# Get from conf file if not defined
|
||||
if [[ -z $secret ]]
|
||||
then
|
||||
secret=$(sudo grep "secret =" $final_path/syncserver.ini | cut -d" " -f3)
|
||||
sudo yunohost app setting ffsync secret -v $secret
|
||||
fi
|
||||
|
||||
# Check Swap
|
||||
if [ $(sudo swapon -s | wc -l) = 1 ];
|
||||
|
@ -26,7 +34,6 @@ then
|
|||
fi
|
||||
|
||||
# Copy files to the right place
|
||||
final_path=/opt/yunohost/ffsync
|
||||
sudo mkdir -p $final_path
|
||||
sudo cp -a ../sources/* $final_path
|
||||
sudo cp ../conf/ffsync /etc/init.d/
|
||||
|
|
Loading…
Reference in a new issue