prevents packages from producing conflicting ssl configs (#1195)

* prevents packages from producing conflicting ssl configs

* remove commented code

commits missing file

fix builds
This commit is contained in:
Keagan McClelland
2022-02-11 15:36:35 -07:00
parent 384bd74dee
commit b4269ce09b
5 changed files with 103 additions and 3 deletions

View File

@@ -63,6 +63,7 @@ pub enum ErrorKind {
Incoherent = 55,
InvalidBackupTargetId = 56,
ProductKeyMismatch = 57,
LanPortConflict = 58,
}
impl ErrorKind {
pub fn as_str(&self) -> &'static str {
@@ -125,6 +126,7 @@ impl ErrorKind {
Incoherent => "Incoherent",
InvalidBackupTargetId => "Invalid Backup Target ID",
ProductKeyMismatch => "Incompatible Product Keys",
LanPortConflict => "Incompatible LAN port configuration",
}
}
}