-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from octokit/updates-release-steps-checks
Adds details on how to run a manual file integrity check
- Loading branch information
Showing
4 changed files
with
112 additions
and
17 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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env bash | ||
# Usage: script/gem | ||
# Validates the packed gem to determine if file permissions are correct. | ||
|
||
<<'###SCRIPT_COMMENT' | ||
Purpose: | ||
(Given octopoller.rb is currently shipped "manually") | ||
Because different environments behave differently, it is recommended that the integrity and file permissions of the files packed in the gem are verified. | ||
This is to help prevent things like releasing world writeable files in the gem. The simple check below looks at each file contained in the packed gem and | ||
verifies that the files are only owner writeable. | ||
Requirements: | ||
This script expects that script/package, script/release or 'gem build *.gemspec' have been run | ||
###SCRIPT_COMMENT | ||
|
||
|
||
FILE=$(ls *.gem| head -1) | ||
|
||
echo "*** Validating file permissions in the octopoller gem ***" | ||
|
||
if [ ! -f "$FILE" ]; then | ||
echo "$FILE does not exist. Please run script/package, script/release or 'gem build *.gemspec' to generate the gem to be validated" | ||
echo -e '☒ failure' | ||
exit 1 | ||
fi | ||
|
||
tar -xf "${FILE}" | ||
|
||
# naive check to quickly see if any files in the gem are set to the wrong permissions | ||
for f in $(tar --numeric-owner -tvf data.tar.gz ) | ||
do | ||
if [ $f == "-rw-rw-rw-" ]; then | ||
echo "World writeable files (-rw-rw-rw- | 666) detected in the gem. Please repack and make sure that all files in the gem are owner read write ( -rw-r--r-- | 644 )" | ||
echo -e '☒ failure' | ||
rm -f checksums.yaml.gz data.tar.gz metadata.gz | ||
exit 1 | ||
fi | ||
done | ||
|
||
# Check clean up | ||
echo -e '☑ success' | ||
rm -f checksums.yaml.gz data.tar.gz metadata.gz |