Skip to content
This repository was archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
fix: more typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vietchinh committed Sep 13, 2023
1 parent 42c8acc commit 0cdae63
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/recipe-kinoite-light-bore-eevdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ modules:

- type: systemd
system:
enable:
enabled:
- uksmd.service
2 changes: 1 addition & 1 deletion config/recipe-kinoite-light-libvirt-bore-eevdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ modules:

- type: systemd
system:
enable:
enabled:
- uksmd.service
- libvirtd.service
2 changes: 1 addition & 1 deletion config/recipe-kinoite-light-libvirt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ modules:

- type: systemd
system:
enable:
enabled:
- libvirtd.service
4 changes: 2 additions & 2 deletions modules/systemd/systemd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ fi
if [[ ${#USER_ENABLED[@]} -gt 0 ]]; then
for unit in "${USER_ENABLED[@]}"; do
unit=$(printf "$unit")
systemctl --user enable $unit
systemctl --global enable $unit
done
fi
if [[ ${#USER_DISABLED[@]} -gt 0 ]]; then
for unit in "${USER_ENABLED[@]}"; do
unit=$(printf "$unit")
systemctl --user disable $unit
systemctl --global disable $unit
done
fi

0 comments on commit 0cdae63

Please sign in to comment.