mirror of
				https://github.com/telekom-security/tpotce.git
				synced 2025-11-04 06:22:54 +00:00 
			
		
		
		
	tweaking
This commit is contained in:
		
							parent
							
								
									b9245aef0f
								
							
						
					
					
						commit
						7e6637847d
					
				
					 2 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -170,6 +170,7 @@ fuMAILONEY () {
 | 
			
		|||
# Let's create a function to clean up nginx logs
 | 
			
		||||
fuNGINX () {
 | 
			
		||||
  if [ "$myPERSISTENCE" != "on" ]; then rm -rf /data/nginx/log/*; fi
 | 
			
		||||
  touch /data/nginx/log/error.log
 | 
			
		||||
  chmod 644 /data/nginx/conf -R
 | 
			
		||||
  chmod 644 /data/nginx/cert -R
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -631,9 +631,9 @@ case $myCONF_TPOT_FLAVOR in
 | 
			
		|||
esac
 | 
			
		||||
 | 
			
		||||
# Let's load docker images
 | 
			
		||||
myIMAGESCOUNT=$(cat $myTPOTCOMPOSE | grep -v '#' | grep image | cut -d: -f2 | wc -l)
 | 
			
		||||
myIMAGESCOUNT=$(cat $myTPOTCOMPOSE | grep -v '#' | grep image | cut -d: -f2 | uniq | wc -l)
 | 
			
		||||
j=0
 | 
			
		||||
for name in $(cat $myTPOTCOMPOSE | grep -v '#' | grep image | cut -d'"' -f2)
 | 
			
		||||
for name in $(cat $myTPOTCOMPOSE | grep -v '#' | grep image | cut -d'"' -f2 | uniq)
 | 
			
		||||
  do
 | 
			
		||||
    dialog --title "[ Downloading docker images, please be patient ]" --backtitle "$myBACKTITLE" \
 | 
			
		||||
           --gauge "\n  Now downloading: $name\n" 8 80 $(expr 100 \* $j / $myIMAGESCOUNT) <<EOF
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue