From f9907d9a71cdafe0bf5d6ae5c29fde9bdca5c7a0 Mon Sep 17 00:00:00 2001 From: Raine Date: Tue, 4 Jun 2024 14:29:51 +0200 Subject: [PATCH] cleanup --- configs/example/crate.toml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 configs/example/crate.toml diff --git a/configs/example/crate.toml b/configs/example/crate.toml deleted file mode 100644 index b8c6d3a..0000000 --- a/configs/example/crate.toml +++ /dev/null @@ -1,27 +0,0 @@ -name = "example" #* -description = "hello" -author = ":$3" - -# [ LINKS ] -# This defines what links should be made. -# vars: -# "$CRATE" expands to path of directory of this file. -# "$CROOT" expands to base directory / cwd from the runner -# prefixes: -# "#" - system root -# "~" - home of user or user defined in options -# "%" - temp directory -[links] -"$CRATE/system.sh" = { name = "/etc/system_boot", su = "true" } -"$CRATE/system2.sh" = "#/etc/system_boot.sh" # same as above - -# [ COPIES ] -# basically the same as links but copies -[copies] -"$CRATE/system3.sh" = "#/etc/system_boot.sh" # same as above - -# [ SCRIPTS ] -# Run stuff -[scripts] -"$CRATE/system/net_config.sh" = 1 -"$CRATE/system/net_config2.sh" = { su = "false" }