mirror of
https://github.com/YunoHost-Apps/jenkins_ynh.git
synced 2024-09-03 19:26:18 +02:00
Update restore
This commit is contained in:
parent
eb86942aed
commit
1a348ef176
1 changed files with 11 additions and 2 deletions
|
@ -78,12 +78,17 @@ ynh_script_progression --message="Installing Jenkins..."
|
||||||
|
|
||||||
# Download jenkins deb file and install it.
|
# Download jenkins deb file and install it.
|
||||||
ynh_setup_source --dest_dir="../conf"
|
ynh_setup_source --dest_dir="../conf"
|
||||||
dpkg --install --force-confnew ../conf/jenkins.deb
|
dpkg --install --force-confnew ../conf/jenkins.deb || true
|
||||||
|
dpkg_install_failed=$(dpkg-query -f '${status} ${package}\n' -W | awk '$4 ~ /^jenkins.*/ && $3 != "installed" {print $4}' | wc -l)
|
||||||
|
|
||||||
|
if [[ $dpkg_install_failed -ge 1 ]]; then
|
||||||
|
ynh_print_warn --message="The service jenkins cannot be started for now."
|
||||||
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP APPLICATION
|
# SETUP APPLICATION
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Setuping application..."
|
ynh_script_progression --message="Setuping application on port $port..."
|
||||||
|
|
||||||
ynh_replace_string --match_string="Environment=\"JENKINS_PORT=8080\"" --replace_string="Environment=\"JENKINS_PORT=$port\"\nEnvironment=\"JENKINS_PREFIX=$path_url\"" --target_file="/lib/systemd/system/jenkins.service"
|
ynh_replace_string --match_string="Environment=\"JENKINS_PORT=8080\"" --replace_string="Environment=\"JENKINS_PORT=$port\"\nEnvironment=\"JENKINS_PREFIX=$path_url\"" --target_file="/lib/systemd/system/jenkins.service"
|
||||||
|
|
||||||
|
@ -91,6 +96,10 @@ systemctl daemon-reload --quiet
|
||||||
|
|
||||||
ynh_systemd_action --service_name=$app --action="restart" --line_match="Started" --log_path="systemd"
|
ynh_systemd_action --service_name=$app --action="restart" --line_match="Started" --log_path="systemd"
|
||||||
|
|
||||||
|
if [[ $dpkg_install_failed -ge 1 ]]; then
|
||||||
|
dpkg --configure -a
|
||||||
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RESTORE THE APP MAIN DIR
|
# RESTORE THE APP MAIN DIR
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue