Skip to main content

Is there a way to automate or script the upgrade of Ubuntu LTS v18.04 to v20.04 

Hello,

You can accomplish this with a Worklet.

 

DEVICE TARGETING

Attribute: ‘OS Version’ ‘IS’ ‘Linux Ubuntu 18.04’

 

EVALUATION CODE

#!/bin/bash

exit 1

 

REMEDIATION CODE

#!/bin/bash

sudo do-release-upgrade -f DistUpgradeViewNonInteractive


Reply