b725a0974b
1. Rename Titanium Cloud to StarlingX for .spec files 2. Rename Titanium Cloud to StarlingX for .service file Test: After the de-brand change, bootimage.iso has built in the flock layer and installed on the dev machine to validate the changes. Please note, doing de-brand changes in batches, this is batch1 changes. Story: 2006387 Task: 36207 Change-Id: Ifa4dc5c7aa3189815e00b796fc833852e88c8fe3 Signed-off-by: Sharath Kumar K <sharath.kumar@intel.com>
42 lines
845 B
RPMSpec
42 lines
845 B
RPMSpec
%define debug_package %{nil}
|
|
|
|
Name: mtce-storage
|
|
Version: 1.0
|
|
Release: %{tis_patch_ver}%{?_tis_dist}
|
|
Summary: StarlingX Platform Storage Node Maintenance Package
|
|
|
|
Group: base
|
|
License: Apache-2.0
|
|
Packager: Wind River <info@windriver.com>
|
|
URL: unknown
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: systemd
|
|
BuildRequires: systemd-devel
|
|
Requires: bash
|
|
Requires: /bin/systemctl
|
|
|
|
%description
|
|
Maintenance support files for storage-only node type
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
|
|
%install
|
|
make install buildroot=%{buildroot} _sysconfdir=%{_sysconfdir} _unitdir=%{_unitdir} _datarootdir=%{_datarootdir}
|
|
|
|
%post
|
|
/bin/systemctl enable goenabled-storage.service
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_sysconfdir}/init.d/goenabledStorage
|
|
%{_unitdir}/goenabled-storage.service
|
|
%license %{_datarootdir}/licenses/mtce-storage-1.0/LICENSE
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|