2024-10-02 15:52:04 +02:00
|
|
|
{
|
2024-10-19 18:40:58 +02:00
|
|
|
deploy-rs,
|
2024-10-02 15:52:04 +02:00
|
|
|
self,
|
2024-10-19 18:40:58 +02:00
|
|
|
writeShellApplication,
|
2024-10-02 15:52:04 +02:00
|
|
|
...
|
|
|
|
}:
|
2024-10-19 18:40:58 +02:00
|
|
|
writeShellApplication {
|
2024-10-02 15:52:04 +02:00
|
|
|
name = "deploy-qois";
|
|
|
|
meta.description = "Deploy configuration to specificed targets.";
|
2024-10-19 18:40:58 +02:00
|
|
|
runtimeInputs = [ deploy-rs ];
|
2024-10-02 15:52:04 +02:00
|
|
|
text = ''
|
|
|
|
deploy --interactive --targets "''${@:-${self}}"
|
|
|
|
'';
|
|
|
|
}
|