This commit is contained in:
BoHung Chiu 2022-08-31 19:43:03 +08:00
parent 5c13ee9463
commit c6c4ecedff
1 changed files with 3 additions and 2 deletions

View File

@ -150,8 +150,9 @@ def main():
yaml.dump(netplan_config_yaml, f)
netplan_get_status = os.system('sudo netplan get')
if netplan_get_status == 0:
os.system('sudo netplan try --timeout 10')
print("Finish configuring netplan!")
os.system('sudo netplan try --timeout 10 && echo "Finish configuring netplan!" && exit 0')
f.write(org_file_contents)
print("Recover changed!")
else:
print("Something went wrong!")
f.write(org_file_contents)