apply_local: Fix nixos detection from os-release (#63)

This commit is contained in:
Glenn McDonald 2022-03-07 23:52:22 -05:00 committed by GitHub
parent 2b281286d0
commit 9c179b0db8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
use std::env;
use regex::Regex;
use std::collections::HashMap;
use clap::{Arg, App, ArgMatches};
@ -61,7 +62,8 @@ By default, Colmena will deploy keys set in `deployment.keys` before activating
pub async fn run(_global_args: &ArgMatches, local_args: &ArgMatches) -> Result<(), ColmenaError> {
// Sanity check: Are we running NixOS?
if let Ok(os_release) = fs::read_to_string("/etc/os-release").await {
if !os_release.contains("ID=nixos\n") {
let re = Regex::new(r#"ID="?nixos"?"#).unwrap();
if !re.is_match(&os_release) {
log::error!("\"apply-local\" only works on NixOS machines.");
quit::with_code(5);
}