14 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
HERE="$(dirname "$0")"
 | 
						|
 | 
						|
# shellcheck source=net/datacenter-node-install/utils.sh
 | 
						|
source "$HERE"/utils.sh
 | 
						|
 | 
						|
ensure_env || exit 1
 | 
						|
 | 
						|
set -xe
 | 
						|
 | 
						|
systemctl disable systemd-networkd-wait-online.service
 | 
						|
systemctl mask systemd-networkd-wait-online.service
 |