Browse Source

rename default operator to admin

tags/v2.1.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
5df1b8b2bc
4 changed files with 6 additions and 6 deletions
  1. 2
    2
      conventional.yaml
  2. 1
    1
      distrib/docker/README.md
  3. 1
    1
      distrib/docker/run.sh
  4. 2
    2
      oragono.yaml

+ 2
- 2
conventional.yaml View File

@@ -532,8 +532,8 @@ oper-classes:
532 532
 
533 533
 # ircd operators
534 534
 opers:
535
-    # operator named 'dan'
536
-    dan:
535
+    # operator named 'admin'; log in with /OPER admin [password]
536
+    admin:
537 537
         # which capabilities this oper has access to
538 538
         class: "server-admin"
539 539
 

+ 1
- 1
distrib/docker/README.md View File

@@ -36,7 +36,7 @@ docker logs oragono
36 36
 You should see a line similar to:
37 37
 
38 38
 ```
39
-Oper username:password is dan:cnn2tm9TP3GeI4vLaEMS
39
+Oper username:password is admin:cnn2tm9TP3GeI4vLaEMS
40 40
 ```
41 41
 
42 42
 ## Persisting data

+ 1
- 1
distrib/docker/run.sh View File

@@ -9,7 +9,7 @@ if [ ! -f "/ircd/ircd.yaml" ]; then
9 9
 
10 10
     # change default oper passwd
11 11
     OPERPASS=$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c20)
12
-    echo "Oper username:password is dan:$OPERPASS"
12
+    echo "Oper username:password is admin:$OPERPASS"
13 13
     ENCRYPTEDPASS=$(echo "$OPERPASS" | /ircd-bin/oragono genpasswd)
14 14
     ORIGINALPASS='\$2a\$04\$LiytCxaY0lI.guDj2pBN4eLRD5cdM2OLDwqmGAgB6M2OPirbF5Jcu'
15 15
 

+ 2
- 2
oragono.yaml View File

@@ -553,8 +553,8 @@ oper-classes:
553 553
 
554 554
 # ircd operators
555 555
 opers:
556
-    # operator named 'dan'
557
-    dan:
556
+    # operator named 'admin'; log in with /OPER admin [password]
557
+    admin:
558 558
         # which capabilities this oper has access to
559 559
         class: "server-admin"
560 560
 

Loading…
Cancel
Save