s/runCommandNoCC/runCommand/g

This commit is contained in:
notgne2 2022-09-26 16:16:29 -07:00
parent bc69ec704f
commit 0b8ab3c52c
No known key found for this signature in database
GPG key ID: 5CE0A245A2DAC84A
3 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@ let
ranges = map(lambda r: list(r.address_exclude(serverNetwork)), ranges)
print(':'.join(ranges))
'';
rangesOutput = pkgs.runCommandNoCC "exclusionary-wildcard-ranges" { } ''
rangesOutput = pkgs.runCommand "exclusionary-wildcard-ranges" { } ''
${pkgs.python3}/bin/python3 ${generateRangesScript} > $out
'';
in
@ -36,7 +36,7 @@ let
n1 = ipaddress.ip_network('${vlanIP}/${toString vlanSize}', False)
print(n1, end="")
'';
subnetOutput = pkgs.runCommandNoCC "subnet-without-host-bits" { } ''
subnetOutput = pkgs.runCommand "subnet-without-host-bits" { } ''
${pkgs.python3}/bin/python3 ${generateSubnetScript} > $out
'';
in