38 lines
942 B
Python
Executable File
38 lines
942 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from pathlib import Path
|
|
|
|
from rich import print
|
|
|
|
|
|
def create_symlink(source, target):
|
|
try:
|
|
target_path = Path(target)
|
|
|
|
# Check if the target already exists and remove it if it does
|
|
if target_path.exists() or target_path.is_symlink():
|
|
target_path.unlink()
|
|
|
|
# Create the symbolic link
|
|
target_path.symlink_to(source)
|
|
print(f'Created symlink: {source} -> {target}')
|
|
except OSError as e:
|
|
print(f'Error creating symlink: {e}')
|
|
|
|
|
|
def main():
|
|
repo_dir = Path(__file__).resolve()
|
|
systemd_dir = Path('/etc/systemd/system')
|
|
|
|
# Define the source and target paths
|
|
socket_file = 'example.socket'
|
|
service_file = 'example@.service'
|
|
|
|
# Create symlinks
|
|
create_symlink(repo_dir / socket_file, systemd_dir / socket_file)
|
|
create_symlink(repo_dir / service_file, systemd_dir / service_file)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|