tangled
alpha
login
or
join now
ptr.pet
/
ark
nix machine / user configurations
2
fork
atom
overview
issues
pulls
pipelines
feat(deploy): allow deploying all hosts
ptr.pet
5 months ago
0c7ffc80
6ce6e5d3
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
options
unified
split
Changed files
+5
-1
deploy.nu
+5
-1
deploy.nu
···
151
151
}
152
152
}
153
153
154
154
-
deploy $hostname
154
154
+
if $hostname == "all" {
155
155
+
$hosts | columns | each {|host| deploy $host}
156
156
+
} else {
157
157
+
deploy $hostname
158
158
+
}
155
159
156
160
if $inputs_updated {
157
161
try { git push }