A library for writing host-specific, single-binary configuration management and deployment tools
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
289 B

7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
  1. use std::borrow::Cow;
  2. use std::error::Error;
  3. use std::fmt::Display;
  4. pub trait Symbol: Display {
  5. fn target_reached(&self) -> Result<bool, Box<Error>>;
  6. fn execute(&self) -> Result<(), Box<Error>>;
  7. }
  8. pub mod file;
  9. pub mod git;
  10. pub mod npm;
  11. pub mod user;
  12. pub mod systemd;
  13. pub mod nginx;