16 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/bin/env bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								HERE="$(dirname "$0")"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# shellcheck source=net/datacenter-node-install/utils.sh
							 | 
						||
| 
								 | 
							
								source "$HERE"/utils.sh
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ensure_env || exit 1
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								cat <<EOF > /etc/modprobe.d/blacklist-nouveau.conf
							 | 
						||
| 
								 | 
							
								blacklist nouveau
							 | 
						||
| 
								 | 
							
								options nouveau modeset=0
							 | 
						||
| 
								 | 
							
								EOF
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								update-initramfs -u
							 |