mirror of
				https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
				synced 2025-10-31 08:04:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| #
 | |
| # Launch Calamares normally.
 | |
| 
 | |
| if [ -e '/etc/calamares/OEM_MODE_ACTIVATED' ]; then
 | |
|   msg="$(cat <<EOL
 | |
| The installer was previously run in OEM mode. Please reboot to reset the
 | |
| configuration and try again.
 | |
| EOL
 | |
|   )";
 | |
|   kdialog --msgbox "${msg}";
 | |
|   exit 1;
 | |
| fi
 | |
| 
 | |
| export BROWSER='sudo -H -u lubuntu firefox'
 | |
| calamares -D8;
 |