-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix(_na): upgrade post installation
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
snigdhaos-calamares-config/snigdhaos-calamares-config.install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
post_install() { | ||
echo -e "\n** The files have been installed in /etc/calamares **\n" | ||
echo -e "\n** The configuration files for Calamares have been installed in /etc/calamares. **" | ||
echo -e "** Please review and adjust these files as needed for your system configuration. **" | ||
echo -e "** Documentation: https://calamares.io/docs/ **\n" | ||
} | ||
|
||
post_upgrade() { | ||
echo -e "\n** The package has been upgraded successfully. **" | ||
echo -e "** Re-applying the configuration to /etc/calamares if necessary. **" | ||
post_install | ||
} | ||
} |