mirror of https://github.com/trapexit/mergerfs.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							460 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							19 lines
						
					
					
						
							460 B
						
					
					
				
								#!/bin/sh
							 | 
						|
								
							 | 
						|
								if [ -e /usr/bin/apt-get ]; then
							 | 
						|
								    export DEBIAN_FRONTEND=noninteractive
							 | 
						|
								    apt-get -qy update
							 | 
						|
								    apt-get -qy --force-yes --no-install-suggests --no-install-recommends install \
							 | 
						|
								            qemu-user-static \
							 | 
						|
								            podman
							 | 
						|
								elif [ -e /usr/bin/dnf ]; then
							 | 
						|
								    dnf -y update
							 | 
						|
								    dnf -y install \
							 | 
						|
								        qemu-user-static \
							 | 
						|
								        podman
							 | 
						|
								elif [ -e /sbin/apk ]; then
							 | 
						|
								    apk add \
							 | 
						|
								        python3 \
							 | 
						|
								        qemu-user-static \
							 | 
						|
								        podman
							 | 
						|
								fi
							 |