Browse Source

update nextcloud and prowlarr

Josh Bicking 4 months ago
parent
commit
1d50b2c9f2
3 changed files with 3 additions and 4 deletions
  1. 1 1
      nextcloud/values.yaml
  2. 1 1
      prowlarr.yaml
  3. 1 2
      seedbox_sync.py

+ 1 - 1
nextcloud/values.yaml

@@ -22,7 +22,7 @@
 ##
 image:
   repository: nextcloud
-  tag: 26.0.6-apache
+  tag: 26.0.9-apache
   pullPolicy: IfNotPresent
   # pullSecrets:
   #   - myRegistrKeySecretName

+ 1 - 1
prowlarr.yaml

@@ -16,7 +16,7 @@ spec:
     spec:
       containers:
       - name: prowlarr
-        image: lscr.io/linuxserver/prowlarr:develop-1.3.1.2796-ls94
+        image: lscr.io/linuxserver/prowlarr:nightly-1.10.3.4070-ls21
         ports:
         - containerPort: 9696
           name: http-web-svc

+ 1 - 2
seedbox_sync.py

@@ -49,8 +49,7 @@ for new_file in new:
 
     print(f"Moving to ready: {new_file}")
     try:
-        # rsync here is probably overkill
-        subprocess.run(["rsync", "-r", f'{local_working_path}/{new_file}', f'{local_data_path}'], check=True)
+        subprocess.run(["mv", f'{local_working_path}/{new_file}', f'{local_data_path}'], check=True)
     except:
         subprocess.run(["rm", f'{local_metadata_path}/{new_file}'], check=True)
         raise