某些CakeConsole命令(例如schema update
)需要确认用户的操作。 (Are you sure…
消息)
我想在Puppet(自动安装)下使用它,因此没有实际用户输入yes
进行确认。
有没有强制控制台可以选择的选项?不问用户?
答案 0 :(得分:1)
- 是的,-y不要提示确认。小心!
-> app/Console/cake schema update --help
Welcome to CakePHP v2.8.0-dev Console
---------------------------------------------------------------
App : app
Path: /var/www/someapp.dev/
---------------------------------------------------------------
Usage:
cake schema update [options]
Options:
--help, -h Display this help.
--verbose, -v Enable verbose output.
--quiet, -q Enable quiet output.
--plugin, -p The plugin to use.
--path Path to read and write schema.php (default:
/var/www/someapp.dev/app/Config/Schema)
--file File name to read and write.
--name Classname to use. If its Plugin.class, both name and
plugin options will be set.
--connection, -c Set the db config to use. (default:
default)
--dry Perform a dry run on create and update commands.
Queries will be output instead of run.
--snapshot, -s Snapshot number to use/make.
--force, -f Force "generate" to create a new schema
--yes, -y Do not prompt for confirmation. Be careful!
但 yes
选项未添加until 2.5 - 如果您使用的是早期版本的2.x,则需要升级才能拥有此功能选项可用。