X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ric-platform%2F50-RIC-Platform%2Fhelm%2Fe2term%2Fresources%2Fcleaner.sh;fp=ric-platform%2F50-RIC-Platform%2Fhelm%2Fdbaas%2FChart.yaml;h=f297fd7366951050ef4c7c7fbf0afd1718f663a5;hb=0011afae26ce8f51b964ddc47d8d4b4f80830a4c;hp=861406dff676d33e83909684b07c3d5bbb0781a4;hpb=2df61c2fcf64b32ecf7f064ef9cbbe6b54a15bc0;p=it%2Fdep.git diff --git a/ric-platform/50-RIC-Platform/helm/dbaas/Chart.yaml b/ric-platform/50-RIC-Platform/helm/e2term/resources/cleaner.sh similarity index 84% rename from ric-platform/50-RIC-Platform/helm/dbaas/Chart.yaml rename to ric-platform/50-RIC-Platform/helm/e2term/resources/cleaner.sh index 861406df..f297fd73 100644 --- a/ric-platform/50-RIC-Platform/helm/dbaas/Chart.yaml +++ b/ric-platform/50-RIC-Platform/helm/e2term/resources/cleaner.sh @@ -1,6 +1,6 @@ +#!/bin/sh ################################################################################ # Copyright (c) 2019 AT&T Intellectual Property. # -# Copyright (c) 2019 Nokia. # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # @@ -15,8 +15,11 @@ # limitations under the License. # ################################################################################ -apiVersion: v1 -appVersion: "1.0" -description: DBaaS realized with standalone, non-persistent, non-redundant Redis -name: dbaas -version: 1.1.0 +( +echo "$0 cleaning old files under $1 older than $2 days" > /tmp/cleaner.log +while true; do + find $1 -type f -mtime +$2 -delete + sleep 86400 +done +) >/dev/null 2>&1 & +disown -a