mirror of
https://github.com/Snigdha-OS/snigdhaos-system-config.git
synced 2025-12-06 08:03:53 +01:00
27 lines
616 B
Bash
Executable File
27 lines
616 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Define the source and target files
|
|
SOURCE_FILE="/usr/local/share/snigdhaos/release/lsb-release-snigdhaos"
|
|
TARGET_FILE="/etc/lsb-release"
|
|
|
|
echo
|
|
echo "Applying lsb Release..."
|
|
|
|
# Check if the source file exists
|
|
if [[ ! -f "$SOURCE_FILE" ]]; then
|
|
echo "Error: Source file '$SOURCE_FILE' does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
# Attempt to copy the source file to the target location
|
|
if sudo cp "$SOURCE_FILE" "$TARGET_FILE"; then
|
|
echo "Successfully copied $SOURCE_FILE to $TARGET_FILE."
|
|
else
|
|
echo "Error: Failed to copy $SOURCE_FILE to $TARGET_FILE."
|
|
exit 1
|
|
fi
|
|
|
|
echo
|
|
echo "Task Completed!"
|
|
echo
|