mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-25 22:49:28 +02:00
11 lines
134 B
Bash
Executable File
11 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [[ $EUID -ne 0 ]];
|
|
then
|
|
exec pkexec --disable-internal-agent "$0" "$@"
|
|
fi
|
|
|
|
hostnamectl set-hostname "$1"
|