aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio <sergiotarxz@posteo.net>2026-09-17 12:03:28 +0200
committerSergio <sergiotarxz@posteo.net>2026-09-17 12:03:28 +0200
commit5d62f423bb7dce39ec4a24cfed259ac9300ba189 (patch)
tree76398714b5b52fe738f7ce4f64ddeb2f0fc99b23
parentfaf528e8fd4cfff2d658203b921529f62b12d203 (diff)
Missing sudo
-rw-r--r--lib/AlgaOS/Updater/GUI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AlgaOS/Updater/GUI.pm b/lib/AlgaOS/Updater/GUI.pm
index 9bb7102..40093f3 100644
--- a/lib/AlgaOS/Updater/GUI.pm
+++ b/lib/AlgaOS/Updater/GUI.pm
@@ -311,7 +311,7 @@ EOF
}
my @services = qw/power-profiles-daemon/;
for my $service (@services) {
- system qw{systemctl enable --now}, $service;
+ system qw{sudo systemctl enable --now}, $service;
}
exit 0;
}