From fd1d6eaa20dc04d156c2de16c261bf5b89cf9cd8 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 23 Dec 2022 23:39:36 +0100 Subject: [PATCH] Delete actions.toml --- actions.toml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 actions.toml diff --git a/actions.toml b/actions.toml deleted file mode 100644 index b5f8859..0000000 --- a/actions.toml +++ /dev/null @@ -1,32 +0,0 @@ -[sftp] -name = "Enable or disable the sftp access" -command = "/bin/bash scripts/actions/sftp" -# user = "root" # optional -# cwd = "/" # optional -# accepted_return_codes = [0, 1, 2, 3] # optional -accepted_return_codes = [0] -description = "Enable or disable the sftp access." - - [sftp.arguments] - [sftp.arguments.with_sftp] - type = "boolean" - ask = "Do you need a SFTP access?" - default = true - -[create_database] -name = "Create a database" -command = "/bin/bash scripts/actions/create_database" -# user = "root" # optional -# cwd = "/" # optional -# accepted_return_codes = [0, 1, 2, 3] # optional -accepted_return_codes = [0] -description = "Create a database or replace a previous one." - -[remove_database] -name = "Remove a database" -command = "/bin/bash scripts/actions/remove_database" -# user = "root" # optional -# cwd = "/" # optional -# accepted_return_codes = [0, 1, 2, 3] # optional -accepted_return_codes = [0] -description = "Remove the current database."