8 lines
144 B
Bash
Executable file
8 lines
144 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# NAME: Enable and configure system services
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Enabling and configuring system services..."
|
|
|
|
exit 0
|