Hi,
I’ve been trying to perform an offline install of the newest aarch openSUSE 16 image remotely (no gui available) using the Agama CLI Installer, but can’t find a working config.
This what I have at the moment:
{
"hostname": {
"transient": "agama",
"static": ""
},
"root": {
"password": "root",
"hashedPassword": false
},
"software": {
"patterns": [
"selinux"
],
"packages": []
},
"product": {
"id": "openSUSE_Leap"
},
"storage": {
"drives": [
{
"alias": "bootDisk",
"search": "/dev/sda",
"ptableType": "gpt",
"partitions": [
{
"search": "*",
"delete": true
},
{
"filesystem": {
"path": "/"
},
"size": {
"min": "10 GiB"
}
},
{
"filesystem": {
"path": "swap",
"type": "swap"
},
"size": "2 GiB"
}
]
}
],
"boot": {
"configure": true,
"device": "bootDisk"
}
},
"network": {
"connections": [
{
"id": "Wired connection 1",
"method4": "auto",
"method6": "auto",
"ignoreAutoDns": false,
"interface": "eth0",
"status": "up",
"autoconnect": true,
"persistent": true
}
]
},
"localization": {
"language": "en_US.UTF-8",
"keyboard": "us",
"timezone": "Europe/Berlin"
}
}
Its a valid config (I’ve tried versions with various changes to the storage section) but I keep seeing a “Cannot perform the installation as the settings are not valid”. “agama questions list” returns an empty too.
What am I missing?
Thanks in advance!