Files
chromebrew/packages/healthcheck.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

40 lines
1.2 KiB
Ruby

require 'package'
class Healthcheck < Package
description 'Linux system health check.'
homepage 'https://github.com/SimplyLinuxFAQ/health-check-script'
version '1cace5'
license 'GPL-3'
compatibility 'all'
source_url 'https://github.com/SimplyLinuxFAQ/health-check-script/archive/1cace54e871c69cd4bbbaeeb3b9e314d7f575b06.tar.gz'
source_sha256 '4f40995614da68da7422e2ba8e01815c569e3c1a268122a5e13a007899092630'
binary_compression 'tar.xz'
binary_sha256({
aarch64: 'b2859389bc7e8822e63fc6d793b40b298c9f47ca69dacfe274e891b62ce6c750',
armv7l: 'b2859389bc7e8822e63fc6d793b40b298c9f47ca69dacfe274e891b62ce6c750',
i686: 'a4d16ed000a890e88db285a5f8a8e81903da7e474c4a4fe641d431e253fe14c2',
x86_64: 'e73a9d6a5d50c759d0f0de7c9c862aba28d4d2fbee17c9f5aa1b7b04e374fb96'
})
depends_on 'lsb_release'
depends_on 'dmidecode'
depends_on 'sysstat'
def self.install
FileUtils.chmod 0o755, 'health-check.sh'
system "sed -i 's,usr/bin,usr/local/bin,' health-check.sh"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.cp 'health-check.sh', "#{CREW_DEST_PREFIX}/bin/healthcheck"
end
def self.postinstall
puts <<~EOT.lightblue
To execute, enter the following:
sudo healthcheck
EOT
end
end