| 
									
										
										
										
											2023-05-12 10:50:39 -06:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-01 12:13:05 -05:00
										 |  |  | # Copyright (c) 2021-2024 tteck | 
					
						
							| 
									
										
										
										
											2023-05-12 10:50:39 -06:00
										 |  |  | # Author: tteck (tteckster) | 
					
						
							|  |  |  | # License: MIT | 
					
						
							|  |  |  | # https://github.com/tteck/Proxmox/raw/main/LICENSE | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" | 
					
						
							|  |  |  | color | 
					
						
							|  |  |  | verb_ip6 | 
					
						
							|  |  |  | catch_errors | 
					
						
							|  |  |  | setting_up_container | 
					
						
							|  |  |  | network_check | 
					
						
							|  |  |  | update_os | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | msg_info "Installing Dependencies" | 
					
						
							|  |  |  | $STD apt-get install -y curl | 
					
						
							|  |  |  | $STD apt-get install -y sudo | 
					
						
							|  |  |  | $STD apt-get install -y mc | 
					
						
							|  |  |  | msg_ok "Installed Dependencies" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 10:43:49 -04:00
										 |  |  | msg_info "Updating Python3" | 
					
						
							|  |  |  | $STD apt-get install -y \
 | 
					
						
							|  |  |  |   python3 \
 | 
					
						
							|  |  |  |   python3-dev \
 | 
					
						
							|  |  |  |   python3-pip | 
					
						
							| 
									
										
										
										
											2024-06-29 11:18:26 -04:00
										 |  |  | rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED | 
					
						
							| 
									
										
										
										
											2023-06-21 10:43:49 -04:00
										 |  |  | msg_ok "Updated Python3" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-12 10:50:39 -06:00
										 |  |  | msg_info "Installing Bazarr" | 
					
						
							|  |  |  | mkdir -p /var/lib/bazarr/ | 
					
						
							|  |  |  | wget -q https://github.com/morpheus65535/bazarr/releases/latest/download/bazarr.zip | 
					
						
							|  |  |  | unzip -qq bazarr -d /opt/bazarr | 
					
						
							|  |  |  | chmod 775 /opt/bazarr /var/lib/bazarr/ | 
					
						
							|  |  |  | python3 -m pip install -q -r /opt/bazarr/requirements.txt | 
					
						
							|  |  |  | msg_ok "Installed Bazarr" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | msg_info "Creating Service" | 
					
						
							|  |  |  | cat <<EOF >/etc/systemd/system/bazarr.service | 
					
						
							|  |  |  | [Unit] | 
					
						
							|  |  |  | Description=Bazarr Daemon | 
					
						
							|  |  |  | After=syslog.target network.target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | [Service] | 
					
						
							|  |  |  | WorkingDirectory=/opt/bazarr/ | 
					
						
							|  |  |  | UMask=0002 | 
					
						
							|  |  |  | Restart=on-failure | 
					
						
							|  |  |  | RestartSec=5 | 
					
						
							|  |  |  | Type=simple | 
					
						
							|  |  |  | ExecStart=/usr/bin/python3 /opt/bazarr/bazarr.py | 
					
						
							|  |  |  | KillSignal=SIGINT | 
					
						
							|  |  |  | TimeoutStopSec=20 | 
					
						
							|  |  |  | SyslogIdentifier=bazarr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | [Install] | 
					
						
							|  |  |  | WantedBy=multi-user.target | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | systemctl enable -q --now bazarr | 
					
						
							|  |  |  | msg_ok "Created Service" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | motd_ssh | 
					
						
							| 
									
										
										
										
											2023-05-15 07:39:30 -04:00
										 |  |  | customize | 
					
						
							| 
									
										
										
										
											2023-05-12 10:50:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | msg_info "Cleaning up" | 
					
						
							|  |  |  | rm -rf bazarr.zip | 
					
						
							| 
									
										
										
										
											2024-06-02 08:00:22 -04:00
										 |  |  | $STD apt-get -y autoremove | 
					
						
							|  |  |  | $STD apt-get -y autoclean | 
					
						
							| 
									
										
										
										
											2023-05-12 10:50:39 -06:00
										 |  |  | msg_ok "Cleaned" |