mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-11-03 18:01:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			235 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			235 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
for i in mutter.schemas; do
 | 
						|
        echo "Installing GConf2 schema $i."
 | 
						|
	GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
 | 
						|
		/usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null
 | 
						|
done
 |