mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
22 lines
257 B
Dart
22 lines
257 B
Dart
enum Distribution {
|
|
unknown,
|
|
debian,
|
|
rehl,
|
|
}
|
|
|
|
const debianDistList = [
|
|
'debian',
|
|
'ubuntu',
|
|
'linuxmint',
|
|
'elementary',
|
|
'raspbian'
|
|
];
|
|
const rehlDistList = [
|
|
'redhat',
|
|
'fedora',
|
|
'centos',
|
|
'scientificlinux',
|
|
'rhel',
|
|
'oraclelinux'
|
|
];
|