We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51600ec commit d6de03aCopy full SHA for d6de03a
archinstall/lib/models/application.py
@@ -5,7 +5,7 @@
5
6
class PowerManagement(StrEnum):
7
POWER_PROFILES_DAEMON = 'power-profiles-daemon'
8
- TUNED = 'tuned'
+ TUNED = auto()
9
10
11
class PowerManagementConfigSerialization(TypedDict):
@@ -31,7 +31,7 @@ class PrintServiceConfigSerialization(TypedDict):
31
32
33
class Firewall(StrEnum):
34
- UFW = 'ufw'
+ UFW = auto()
35
FWD = 'firewalld'
36
37
@@ -40,11 +40,11 @@ class FirewallConfigSerialization(TypedDict):
40
41
42
class ZramAlgorithm(StrEnum):
43
- ZSTD = 'zstd'
+ ZSTD = auto()
44
LZO_RLE = 'lzo-rle'
45
- LZO = 'lzo'
46
- LZ4 = 'lz4'
47
- LZ4HC = 'lz4hc'
+ LZO = auto()
+ LZ4 = auto()
+ LZ4HC = auto()
48
49
50
class ApplicationSerialization(TypedDict):
0 commit comments