mirror of https://github.com/tteck/Proxmox.git
				
				
				
			Compare commits
	
		
			2 Commits
		
	
	
		
			5fb1be4e41
			...
			07895a7c23
		
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								 | 
						07895a7c23 | |
| 
							
							
								 | 
						103ac46a9f | 
| 
						 | 
					@ -55,7 +55,30 @@ function default_settings() {
 | 
				
			||||||
function update_script() {
 | 
					function update_script() {
 | 
				
			||||||
header_info
 | 
					header_info
 | 
				
			||||||
if [[ ! -f /etc/systemd/system/prometheus.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
 | 
					if [[ ! -f /etc/systemd/system/prometheus.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
 | 
				
			||||||
msg_error "There is currently no update path available."
 | 
					RELEASE=$(curl -s https://api.github.com/repos/prometheus/prometheus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
 | 
				
			||||||
 | 
					if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
 | 
				
			||||||
 | 
					  msg_info "Stopping ${APP}"
 | 
				
			||||||
 | 
					  systemctl stop prometheus
 | 
				
			||||||
 | 
					  msg_ok "Stopped ${APP}"
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  msg_info "Updating ${APP} to ${RELEASE}"
 | 
				
			||||||
 | 
					  wget -q https://github.com/prometheus/prometheus/releases/download/v${RELEASE}/prometheus-${RELEASE}.linux-amd64.tar.gz
 | 
				
			||||||
 | 
					  tar -xf prometheus-${RELEASE}.linux-amd64.tar.gz
 | 
				
			||||||
 | 
					  cd prometheus-${RELEASE}.linux-amd64
 | 
				
			||||||
 | 
					  cp -rf prometheus promtool /usr/local/bin/
 | 
				
			||||||
 | 
					  cp -rf consoles/ console_libraries/ /etc/prometheus/
 | 
				
			||||||
 | 
					  cd ~
 | 
				
			||||||
 | 
					  rm -rf prometheus-${RELEASE}.linux-amd64 prometheus-${RELEASE}.linux-amd64.tar.gz
 | 
				
			||||||
 | 
					  echo "${RELEASE}" >/opt/${APP}_version.txt
 | 
				
			||||||
 | 
					  msg_ok "Updated ${APP} to ${RELEASE}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  msg_info "Starting ${APP}"
 | 
				
			||||||
 | 
					  systemctl start prometheus
 | 
				
			||||||
 | 
					  msg_ok "Started ${APP}"
 | 
				
			||||||
 | 
					  msg_ok "Updated Successfully"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					  msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
exit
 | 
					exit
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -29,6 +29,7 @@ cd prometheus-${RELEASE}.linux-amd64
 | 
				
			||||||
mv prometheus promtool /usr/local/bin/
 | 
					mv prometheus promtool /usr/local/bin/
 | 
				
			||||||
mv consoles/ console_libraries/ /etc/prometheus/
 | 
					mv consoles/ console_libraries/ /etc/prometheus/
 | 
				
			||||||
mv prometheus.yml /etc/prometheus/prometheus.yml
 | 
					mv prometheus.yml /etc/prometheus/prometheus.yml
 | 
				
			||||||
 | 
					echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
 | 
				
			||||||
msg_ok "Installed Prometheus"
 | 
					msg_ok "Installed Prometheus"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
msg_info "Creating Service"
 | 
					msg_info "Creating Service"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue