22 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
 | 
						|
updatePackages() {
 | 
						|
   noconfirm=
 | 
						|
   if [[ $1 == "-y" ]]; then
 | 
						|
      noconfirm="--assume-yes"
 | 
						|
   fi
 | 
						|
   full=
 | 
						|
   if [[ $2 == "--full" ]]; then
 | 
						|
      full="full-"
 | 
						|
   fi
 | 
						|
   executeAndNotify "doUpdatePackages $noconfirm $full" "system updated" "system update failed";
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
doUpdatePackages() {
 | 
						|
   sudo apt update;
 | 
						|
   sudo apt ${2}upgrade $1;
 | 
						|
   sudo apt autoremove $1;
 | 
						|
}
 |