Browse Source

Update actions.toml

pull/115/head
ericgaspar 5 years ago
parent
commit
cc14b0d3d7
No known key found for this signature in database GPG Key ID: 574F281483054D44
  1. 12
      actions.toml

12
actions.toml

@ -11,23 +11,23 @@ description = "Change the public access of the app."
default = true
[reset_default_nginx]
name = "Reset the nginx config for this app."
name = "Reset the NGINX config for this app."
command = "/bin/bash scripts/actions/reset_default_system nginx"
# user = "root" # optional
# cwd = "/" # optional
# accepted_return_codes = [0, 1, 2, 3] # optional
accepted_return_codes = [0]
description = "Reset the nginx config for this app."
description = "Reset the NGINX config for this app."
[reset_default_phpfpm]
name = "Reset the php-fpm config for this app."
name = "Reset the PHP-FPM config for this app."
command = "/bin/bash scripts/actions/reset_default_system phpfpm"
# user = "root" # optional
# cwd = "/" # optional
# accepted_return_codes = [0, 1, 2, 3] # optional
accepted_return_codes = [0]
description = "Reset the php-fpm config for this app."
description = "Reset the PHP-FPM config for this app."
[reset_default_app]
@ -41,10 +41,10 @@ description = "Reset the app to its default configuration to try to fix potentia
[disable_maintenance]
name = "Disable the maintenance mode of Wordpress"
name = "Disable the maintenance mode of WordPress"
command = "/bin/bash scripts/actions/disable_maintenance"
# user = "root" # optional
# cwd = "/" # optional
# accepted_return_codes = [0, 1, 2, 3] # optional
accepted_return_codes = [0]
description = "Disable the maintenance mode of Wordpress if you're stuck after an upgrade"
description = "Disable the maintenance mode of WordPress if you're stuck after an upgrade"
Loading…
Cancel
Save