Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F87541
D7678.diff
All Users
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D7678.diff
View Options
diff --git a/scripts/user/account_admin.php b/scripts/user/account_admin.php
--- a/scripts/user/account_admin.php
+++ b/scripts/user/account_admin.php
@@ -4,6 +4,29 @@
$root = dirname(dirname(dirname(__FILE__)));
require_once $root.'/scripts/__init_script__.php';
+$table = new PhabricatorUser();
+$any_user = queryfx_one(
+ $table->establishConnection('r'),
+ 'SELECT * FROM %T LIMIT 1',
+ $table->getTableName());
+$is_first_user = (!$any_user);
+
+if ($is_first_user) {
+ echo pht(
+ "WARNING\n\n".
+ "You're about to create the first account on this install. Normally, you ".
+ "should use the web interface to create the first account, not this ".
+ "script.\n\n".
+ "If you use the web interface, it will drop you into a nice UI workflow ".
+ "which gives you more help setting up your install. If you create an ".
+ "account with this script instead, you will skip the setup help and you ".
+ "will not be able to access it later.");
+ if (!phutil_console_confirm(pht("Skip easy setup and create account?"))) {
+ echo pht("Cancelled.")."\n";
+ exit(1);
+ }
+}
+
echo "Enter a username to create a new account or edit an existing account.";
$username = phutil_console_prompt("Enter a username:");
File Metadata
Details
Attached
Mime Type
text/x-diff
Storage Engine
amazon-s3
Storage Format
Raw Data
Storage Handle
phabricator/b7/sc/mr7dunhzgzov25ad
Default Alt Text
D7678.diff (1 KB)
Attached To
Mode
D7678: Warn users about using `bin/accountadmin` for first time setup
Attached
Detach File
Event Timeline
Log In to Comment