スキル一覧に戻る
yanivprusman

daemon-build

by yanivprusman

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: daemon-build description: Detailed instructions for building, deploying, and restarting the AutomateLinux daemon.

Building the Daemon

Managing the AutomateLinux daemon build process is streamlined through shell functions and a core build script.

The bd Terminal Function

The fastest way to rebuild the daemon from anywhere in the terminal is the bd function.

bd

What bd does:

  1. Temporarily changes directory to the daemon source folder.
  2. Runs the build script using the bs (build-source) alias.
  3. Returns to your original directory.

The Build Script (daemon/build.sh)

The underlying logic resides in daemon/build.sh. It performs high-level system maintenance alongside the compilation:

  1. Stop Daemon: Runs stop_daemon.sh to ensure no active process holds files.
  2. Socket Setup: Ensures /run/automatelinux exists with correct permissions (required for Unix Domain Socket communication).
  3. CMake Build:
    • Enters the build/ directory.
    • Executes cmake ...
    • Executes make.
  4. Deployment:
    • Copies the resulting daemon binary back to the root of the daemon directory.
    • Reloads systemd configs: sudo systemctl daemon-reload.
    • Restarts the service: sudo systemctl restart daemon.service.

Technical Requirements

  • Permissions: The build process frequently calls sudo for systemd and socket management.
  • Dependencies: Requires cmake, libevdev, libsystemd, and libmysqlclient.
  • UDS Path: The daemon communicates via /run/automatelinux/automatelinux-daemon.sock.

[!IMPORTANT] Always use bd rather than calling make directly in the build/ folder to ensure the binary is correctly deployed and the systemd service is refreshed.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です