Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions debian/install
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
scripts/* /usr/bin/
udev/*.rules /etc/udev/rules.d/
etc/* /etc/
install_config/logind/70-clearpath-standard-logind.conf /usr/lib/systemd/logind.conf.d/
4 changes: 4 additions & 0 deletions install_config/logind/70-clearpath-standard-logind.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Disable the clearing of SHM links when all user sessions are ended so that running
# ROS 2 services are not impacted when SSH sessions are closed.
[Login]
RemoveIPC=no
4 changes: 2 additions & 2 deletions turtlebot4_setup/ros_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, conf: Conf) -> None:
function=self.set_fastrtps_default_profiles_file),
MenuEntry('', None),
MenuEntry(entry='Apply Defaults', function=self.apply_defaults),
MenuEntry(entry='Save', function=self.save_settings),]
MenuEntry(entry='Save', function=self.save_settings), ]

self.menu = Menu(self.title, self.entries)

Expand Down Expand Up @@ -438,7 +438,7 @@ def generate_uninstall(self):

def fix_conf_username(self, discovery_conf_contents):
"""
Replace the `User=ubuntu` text in the configuration with the current username
Replace the `User=ubuntu` text in the configuration with the current username.

@return The modified config file contents
"""
Expand Down
Loading