-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
6 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
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 |
---|---|---|
|
@@ -23,6 +23,9 @@ chmod -R 0755 %{buildroot}/var/chef/cookbooks/chef-server | |
install -D -m 0644 README.md %{buildroot}/var/chef/cookbooks/chef-server/README.md | ||
|
||
%pre | ||
if [ -d /var/chef/cookbooks/chef-server ]; then | ||
rm -rf /var/chef/cookbooks/chef-server | ||
fi | ||
|
||
%post | ||
case "$1" in | ||
|
@@ -36,6 +39,12 @@ case "$1" in | |
;; | ||
esac | ||
|
||
%postun | ||
# Deletes directory when uninstall the package | ||
if [ "$1" = 0 ] && [ -d /var/chef/cookbooks/chef-server ]; then | ||
rm -rf /var/chef/cookbooks/chef-server | ||
fi | ||
|
||
%files | ||
%defattr(0755,root,root) | ||
/var/chef/cookbooks/chef-server | ||
|
@@ -45,9 +54,14 @@ esac | |
%doc | ||
|
||
%changelog | ||
* Fri Dec 01 2023 Miguel Negrón <[email protected]> - 1.0.6-1 | ||
* Thu Oct 10 2024 Miguel Negrón <[email protected]> | ||
- Add pre and postun | ||
|
||
* Fri Dec 01 2023 Miguel Negrón <[email protected]> | ||
- Add sync ip suppport | ||
* Fri Jan 07 2022 David Vanhoucke <[email protected]> - 1.0.1-1 | ||
|
||
* Fri Jan 07 2022 David Vanhoucke <[email protected]> | ||
- change register to consul | ||
* Tue Oct 18 2016 Alberto Rodríguez <[email protected]> - 1.0.0-1 | ||
|
||
* Tue Oct 18 2016 Alberto Rodríguez <[email protected]> | ||
- first spec version |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
maintainer_email '[email protected]' | ||
license 'AGPL-3.0' | ||
description 'Installs/Configures chef-server' | ||
version '1.0.8' | ||
version '1.0.9' |