Skip to content

Commit 4a632a8

Browse files
committed
ensure bash for memory init
1 parent ed9041f commit 4a632a8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

nix/modules/clawdinator.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ in
478478
wants = [ "remote-fs.target" ];
479479
serviceConfig = {
480480
Type = "oneshot";
481-
ExecStart = "${../../scripts/init-memory.sh} ${cfg.memoryEfs.mountPoint}";
481+
ExecStart = "${pkgs.bash}/bin/bash ${../../scripts/init-memory.sh} ${cfg.memoryEfs.mountPoint}";
482482
};
483483
};
484484

nix/tools/clawdinator-tools.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{ pkgs }:
22
{
33
packages = [
4+
pkgs.bash
45
pkgs.gh
56
pkgs.git
67
pkgs.curl
@@ -16,6 +17,7 @@
1617
];
1718

1819
docs = [
20+
{ name = "bash"; description = "Shell runtime for CLAWDINATOR scripts."; }
1921
{ name = "gh"; description = "GitHub CLI for repo + PR inventory."; }
2022
{ name = "clawdbot-gateway"; description = "CLAWDINATOR runtime (Clawdbot gateway)."; }
2123
{ name = "git"; description = "Repo sync + ops."; }

0 commit comments

Comments
 (0)