Skip to content

Commit

Permalink
Change default user to robot
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-camero committed Jan 31, 2025
1 parent ed96653 commit 9952d54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clearpath_config/common/types/username.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# Username
class Username:

def __init__(self, username: str = 'administrator') -> None:
def __init__(self, username: str = 'robot') -> None:
self.assert_valid(username)
self.username = username

Expand Down
4 changes: 2 additions & 2 deletions clearpath_config/system/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ class SystemConfig(BaseConfig):
HOSTS: HostListConfig.DEFAULTS,
# LOCALHOST: hostname for the specific devices - automatically determined
LOCALHOST: socket.gethostname(),
# USERNAME: administrator
USERNAME: 'administrator',
# USERNAME: robot
USERNAME: 'robot',
# NAMESPACE: serial number
NAMESPACE: Namespace.clean(BaseConfig.get_serial_number(prefix=True)),
# DOMAIN_ID: 0
Expand Down

0 comments on commit 9952d54

Please sign in to comment.