mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
Move old data when data already exist
This commit is contained in:
parent
888e0b521d
commit
d283c566e4
1 changed files with 7 additions and 0 deletions
|
@ -28,6 +28,13 @@ fi
|
||||||
ynh_script_progression --message="Creating base directory..."
|
ynh_script_progression --message="Creating base directory..."
|
||||||
ln -s $data_dir $install_dir/seafile-data
|
ln -s $data_dir $install_dir/seafile-data
|
||||||
|
|
||||||
|
if [ -n "$(ls -A $data_dir)" ]; then
|
||||||
|
old_data_dir_path="${data_dir}_$(date '+%Y%m%d.%H%M%S')"
|
||||||
|
ynh_print_warn "Data directory was not empty. Data was moved to $old_data_dir_path"
|
||||||
|
mkdir -p $old_data_dir_path
|
||||||
|
mv -t "$old_data_dir_path" "$data_dir"/*
|
||||||
|
fi
|
||||||
|
|
||||||
# Download new version from sources
|
# Download new version from sources
|
||||||
ynh_script_progression --message="Installing sources files..." --weight=7
|
ynh_script_progression --message="Installing sources files..." --weight=7
|
||||||
ynh_setup_source --dest_dir=$install_dir/seafile-server-$seafile_version
|
ynh_setup_source --dest_dir=$install_dir/seafile-server-$seafile_version
|
||||||
|
|
Loading…
Reference in a new issue