hidden-ssh: add message option
This commit is contained in:
parent
7b72fc3de2
commit
0cb8ab061a
@ -19,6 +19,10 @@ let
|
|||||||
type = types.str;
|
type = types.str;
|
||||||
default = "irc.freenode.org";
|
default = "irc.freenode.org";
|
||||||
};
|
};
|
||||||
|
message = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "SSH Hidden Service at ";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
imp = let
|
imp = let
|
||||||
@ -50,7 +54,7 @@ let
|
|||||||
${pkgs.irc-announce}/bin/irc-announce \
|
${pkgs.irc-announce}/bin/irc-announce \
|
||||||
${cfg.server} 6667 ${config.krebs.build.host.name}-ssh \
|
${cfg.server} 6667 ${config.krebs.build.host.name}-ssh \
|
||||||
\${cfg.channel} \
|
\${cfg.channel} \
|
||||||
"SSH Hidden Service at $(cat ${hiddenServiceDir}/hostname)"
|
"${cfg.message}$(cat ${hiddenServiceDir}/hostname)"
|
||||||
'';
|
'';
|
||||||
PrivateTmp = "true";
|
PrivateTmp = "true";
|
||||||
User = "tor";
|
User = "tor";
|
||||||
|
Loading…
Reference in New Issue
Block a user