Compare commits
No commits in common. "7c60ca302d8fabd44e47bce2bfc3fa91797af929" and "608888db4f6984d18bf21b2c1172905e463ece37" have entirely different histories.
7c60ca302d
...
608888db4f
3 changed files with 1 additions and 52 deletions
26
Makefile
26
Makefile
|
@ -1,26 +0,0 @@
|
||||||
PKGNAME = uacme
|
|
||||||
SPECFILE = $(PKGNAME).spec
|
|
||||||
ARCH = $(shell rpm --eval "%{_arch}")
|
|
||||||
RPMBUILD = $(shell rpm --eval "%{_builddir}")
|
|
||||||
RPMSOURCE = $(shell rpm --eval "%{_sourcedir}")
|
|
||||||
RPMDIR = $(shell rpm --eval "%{_rpmdir}")
|
|
||||||
|
|
||||||
version = $(shell egrep "^Version" $(SPECFILE) | awk '{ print $$2}')
|
|
||||||
release = $(shell egrep "^Release" $(SPECFILE) | awk '{ print $$2}')
|
|
||||||
|
|
||||||
sourceurl = https://github.com/ndilieto/uacme/archive/refs/tags/upstream/$(version).tar.gz
|
|
||||||
source = $(RPMSOURCE)/$(version).tar.gz
|
|
||||||
|
|
||||||
RPM = $(RPMDIR)/$(ARCH)/$(PKGNAME)-$(version)-$(release).$(ARCH).rpm
|
|
||||||
|
|
||||||
|
|
||||||
$(RPM): $(SPECFILE) $(source)
|
|
||||||
rpmbuild -bb $<
|
|
||||||
|
|
||||||
$(source):
|
|
||||||
wget -O $@ $(sourceurl)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm $(RPM) $(source)
|
|
||||||
|
|
||||||
.PHONY: clean
|
|
22
install.yml
22
install.yml
|
@ -1,22 +0,0 @@
|
||||||
---
|
|
||||||
- name: Install uacme rpm package
|
|
||||||
hosts: linodes
|
|
||||||
vars:
|
|
||||||
rpm_location: /home/thrrgilag/rpmbuild/RPMS/x86_64
|
|
||||||
rpm_file: uacme-1.7.3-1.x86_64.rpm
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- name: ping host
|
|
||||||
ansible.builtin.ping:
|
|
||||||
|
|
||||||
- name: upload rpm
|
|
||||||
ansible.builtin.copy:
|
|
||||||
src: "{{ rpm_location }}/{{ rpm_file }}"
|
|
||||||
dest: /tmp
|
|
||||||
|
|
||||||
- name: install rpm
|
|
||||||
ansible.builtin.dnf:
|
|
||||||
name: /tmp/{{ rpm_file }}
|
|
||||||
state: latest
|
|
||||||
disable_gpg_check: yes
|
|
||||||
become: yes
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
Name: uacme
|
Name: uacme
|
||||||
Version: 1.7.3
|
Version: 1.7.2
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Lightweight SSL certificate verification and issue client
|
Summary: Lightweight SSL certificate verification and issue client
|
||||||
|
|
||||||
|
@ -91,8 +91,5 @@ which uacme --version
|
||||||
%doc AUTHORS ChangeLog NEWS README THANKS
|
%doc AUTHORS ChangeLog NEWS README THANKS
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Dec 08 2022 Morgan McMillian <morgan@mcmillian.dev> 1.7.3-1
|
|
||||||
- Update to uacme 1.7.3
|
|
||||||
|
|
||||||
* Sun Sep 04 2022 Morgan McMillian <morgan@mcmillian.dev> 1.7.2-1
|
* Sun Sep 04 2022 Morgan McMillian <morgan@mcmillian.dev> 1.7.2-1
|
||||||
- Update to uacme 1.7.2
|
- Update to uacme 1.7.2
|
||||||
|
|
Loading…
Reference in a new issue