acme-tiny-5.0.1-6.fc39 >t 6 6_6 2 D H,3!92d LuZLd uZLa9yئ8`@lamsaYܛCc^! zkm-x]#M^Q%dD7PR.R5~J/ΊȃQoWQL""E*=؜ݸvi!M8CY .R2 ٢!7*vLo>QL4P; A?}(̊q+Ɵ19B#9kwNHM?>9K uX<휼ߋƮ zx2wsT4 ?v,BgJ@!|&`6Z Â7yWCnt -MXT] ~F`A #.b#%'u3;|ˌۃ5}j噆kϙ,kE,&ƣDLd:O[Qiq,KZWjoLPQn֮}r18'vwTpd ~o|?칩`4~?@ica61216ae157e00ba0fcae6bdfc0f5d30bf8f23c1b597519069acdfed96fe225e7b7ac0ad381b1c84b83bab6bf404aed57b64a57030204388b603e0047304502204fd31773ddc4cd41a36eee8b75fd5c4a124a38f9192a3f52a43ee5ea96633b80022100ad031b347fbf772756eb35a59262a32866eb40ff09b3b351f90efcfa3bd77578030204388b603e004730450220098175c4d626068fc7141f6ceb13b77b0b7ac5ac8dbf3e5b25714192d078e0dc022100d9ea50f61091c49846532f31aefc561e37fc321421e4086f678c2fee98f1f771030204388b603e00473045022100c412b1ddee5407e9f9f733ace6bc92786d037bd699f0bc23e422ac6a9dfdc60f02206b6d7a9f008eb3eb6151cafe91128f29a00bf6f0f3b22465b88b4d449534e365030204388b603e0047304502207a3141590f6a79b2fc5e39e844688fada8b0412b2eeb016034d4bccd6e59cbb2022100ede77425ec29f76ca3c7df776a08f8fe3cf71d1210b872a581e4d79056d7b825030204388b603e00473045022100ba7b26f39ffc527b1824b2e5925337f13fa978028e0bbb1a80169da14a3bf4f002201a49de3b75f0834a881342209a4715fd86234c7441bbf5e9b4399287ed86b02f030204388b603e0047304502201520ccd78c8fe8b6dafb06375a246193ab3e7d2c007411fe12d9d07da387a000022100c5181e8f42cbc0805605c1ce6056a3a854b37bbc433e2afc907a4bd711c92da9030204388b603e00473045022100fa69e783105ab68ceb90c1dddd880b92c289873b807d63b5dc8bf8100da21db00220294b8b7b409dcb581a7273bab70e57191628d9af0070fc11be3ac8a0f12e21b6030204388b603e00463044022056eeab6f88b02e10a60fe2306126d91acd19e16507adfd9bdc758578e07030d102204231fa7bc2403012ab105281d8e0e71350187c9526964b15bd9854719a14c721030204388b603e00483046022100dcb9339aed276bedf73fb9a9c446896114a8db1c4d403b9ca6bd48e13d9f5bff022100b530fa3bd66c353139f26930114250a67a4de8300f49cf5aa431b2467add8d59030204388b603e00473045022100eee96af717e0b34213e54015f6dc45095a42b09ce57595388db54a0897dd94af02207f65231f8bc60b6fc7304e68d1e938970545ee89c813df935ccc442e4b1f3ac983!92d LuZLd uZLjhޗ9=U Q1uHe+i*.wlY %2gEupF]xV < G䞑g!QqzgMpי W+6YLR >q,Y%hl~r-! 4,)Ejwc5!&M>EgKLQv%ټ.K#9R PQ;(Xoh xIk{ii6wq="w6~/(ƻ'mh,NVBVP=A1d+;x֎[Vio4ҡzƃ}Cv e2Rg[U+x S"rA~~ҢmYE/w;G^f*ЋFZ^e0iL-d;痽1 [Ʌ~= >l! 삖CϚ^#l7وs-P^1gUoHUXÁi :мb4SA;N"KJ)0E8>`OQ?Ad   Z #( X       <  , L   (F8P 9t :r =>?@GH IlXY\]^b defltuXvwPxy I`dlCacme-tiny5.0.16.fc39Tiny auditable script to issue, renew Let's Encrypt certificatesThis is a tiny, auditable script that you can throw on your server to issue and renew Let's Encrypt certificates. Since it has to be run on your server and have access to your private Let's Encrypt account key, I tried to make it as tiny as possible (currently less than 200 lines). The only prerequisites are python and openssl. Well, that and a web server - but then you only need this with a web server. This package adds a simple directory layout and timer service that runs acme_tiny on installed CSRs as the acme user for privilege separation.dߖbuildvm-a64-19.iad2.fedoraproject.org7Fedora ProjectFedora ProjectMITFedora ProjectUnspecifiedhttps://github.com/diafygi/acme-tinylinuxnoarchgetent group acme > /dev/null || groupadd -r acme getent passwd acme > /dev/null || /usr/sbin/useradd -g acme \ -c "Tiny Auditable ACME Client" \ -r -d /var/lib/acme -s /sbin/nologin acme exit 0 if [ $1 -eq 1 ] && [ -x "/usr/lib/systemd/systemd-update-helper" ]; then # Initial installation /usr/lib/systemd/systemd-update-helper install-system-units acme-tiny.service acme-tiny-notice.service acme-tiny.timer || : fi if [ $1 -eq 0 ] && [ -x "/usr/lib/systemd/systemd-update-helper" ]; then # Package removal, not upgrade /usr/lib/systemd/systemd-update-helper remove-system-units acme-tiny.service acme-tiny-notice.service acme-tiny.timer || : fi if [ $1 -ge 1 ] && [ -x "/usr/lib/systemd/systemd-update-helper" ]; then # Package upgrade, not uninstall /usr/lib/systemd/systemd-update-helper mark-restart-system-units acme-tiny.service acme-tiny-notice.service acme-tiny.timer || : fir1 :AAAA큤A큤AAAAAAd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'a - 5.0.1-6Stuart D. Gathman - 5.0.1-5Fedora Release Engineering - 5.0.1-4Fedora Release Engineering - 5.0.1-3Fedora Release Engineering - 5.0.1-2Stuart D. Gathman 5.0.1-1Stuart D. Gathman 4.1.1-2Stuart D. Gathman 4.1.1-1Fedora Release Engineering - 4.1.0-8- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild- Verified SPDX license- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild- New upstream release- Remove CLI override in acme-tiny.service (uses /etc/sysconfig/acme-tiny now)- New upstream release - Set days before expiration in /etc/sysconfig- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild/bin/sh/bin/sh/bin/sh/bin/sh 5.0.1-6.fc395.0.1-6.fc39 acme-tinynotify.dnotify.shacme.confacme-tinyacme-tiny-notify.serviceacme-tiny.serviceacme-tiny.timeracme-tinynotifysignacme-tinyacme-tiny-signcert-checkacme-tinyREADME-fedora.mdacme-tinyLICENSEacme.notifycertscsrprivatechallenges/etc//etc/acme-tiny//etc/httpd/conf.d//etc/sysconfig//usr/lib/systemd/system//usr/libexec//usr/libexec/acme-tiny//usr/sbin//usr/share/doc//usr/share/doc/acme-tiny//usr/share/licenses//usr/share/licenses/acme-tiny//var/lib//var/lib/acme//var/www/-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mbranch-protection=standard -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointercpiozstd19noarch-redhat-linux-gnudirectoryASCII texta /usr/bin/sh script, ASCII text executableBourne-Again shell script, ASCII text executablePython script, ASCII text executableRRRhttps://bugz.fedoraproject.org/acme-tinygroup(acme)user(acme)httpdmod_sslnginxhttpdmod_sslnginxutf-8975f6dcf9274b23c932c3c13e9d1c6ef62b38dd5aff276567c86dd3418dfc7037b063321d3a42906564a133a17935d0bbc375f6af4d2b3dca086c125e433d34b?(/hM$.pqF#:QאraB)@TVD-oHH$G @E'p=w\*eO9{O\8-IN+fyI*Zi+UׅUFJcet $x!hM*#a>ڡ2Hh nFD4_6]VK6M/伢0YV5&SdUeC ˙Wq#s۴CMCB٫v\ȷZ KwȘI"3r͵8NcrTYd4w+LȍDm}7ȕ4D䁡Nӹ|Sqv̷]+(;Ǩh!|7QY$[=pB];]_Dy·A2'ɹyxU^v/%(^c`3RM+UҋCk |0*$*H23L&2*ʧsn,9VH,,HGCeHHTJri/hݧ]]i  hNkmQYх fPJ B~\"'v92*aWcXLDĚ\ ĺ)8cEd"qʶ.ٻ!BR)>VR"rp @Y,v]כ,}E(w ^o/qM}|֭j5朵o_[Lv )D-,0k|Դ6S=_iQ4,$(j*-Pšh Zhmۦ+L,0m)>)kfXKK fT0($NJMC`D*FD hE旃1()K$)@(_ |*jSnvcv[0[!j h0mʗE]EN5D~ |n%o^ Ϲˉ[ӍL9{˒GX_\*]B "w5KrTW F+|bpW52qp=cycXdKie56fgھzݒ+ -mù_b~^Eȳscy$|P #?gq&Ui$MXo4 po[w-EFn5Hk|c>ʳޜ*rf+2zن i$me\j^ tS*!ϟ.QSTKlW ,6+O;F.2"SIhIbR2ӄR}4 p!QIn۷BF/ GA'0@yl89q688 [Klg(!@U678Cs@"O[oHVjKx k\LmJ7J(Oj;R ٖ.M, dI%^_$u>8!GqxWQ\4CL"= t4sWߒ*)KYIXhs 2Gˈz/|6tl5Q.&x.כSf0m$ LĄ f t)Gi]HhߙV 9zF\)/2"~]^g^۲wʍtSؽҍ ewմrEx[\FpbhʙD})ҽ۲|&-k|V7YP!p](_',adzZ]C|wֽUy"}F.4{R>^*xJ1xe丫o׆3H$@L32 E3AE@DDD4-d D#f)C++3ul(.šswN6YsB>ꯢcsֻ1AǬhjķ1]iL{UR&=G~G`:! 9WNV9FA\NT H@{8L g.]H\ƪy6 %4)V5ׅd=!29qq\,AeP3'6P41m[PLTH Q# RA¥M4qq++gz:~O> JKDp~qx"ԃ9I6U^ݸF&SD^Z 24Ext 67%f89D V>6*U{@*GwmZPuV[eұAob$/%ENyUI- Jd͏Vl:̈́ڰ'u_Oݵ *N6 br%r/N*voOv1253]U[pUs#vԺޡ$rںQuss0 #kE\ &ogF UlgKYM}nF"oƐ#0PiGD('9'5uc,AygƳPaDR KekҦ 8ʭ2 kf_ͶJVOީ|D:\M~B=(&OtԵvU%)sdmJe[b[e,WvUn#`a1Esb;uO`/GFY&q~LSmc J3ܫ #{}G+TGRs|jOܣ\>4ç.;2ڥ wm|4;# !BqqWT'vb01XpeUܐoϑ)t/}yaY,b@@;`ft6WvreMx3IO"X죀)༂g2LJD]ہ%AϮ7/fA)SZ6׷.qf@R;oT<E+@f D Vg8$N,C?Cdb.v%(q(B{3tM< (ǿYU /A3Fq|XY"TIsp_ytTq qr*̐쪝QXpnKIHlT +zInu6rF lofݭye a|z΂ѲANy|2aj_ nܫaCsJH]*Ra" oX IiCSXF_;]蹣'+X}Cv8<w ,yEېvV&m{2WkVܰteA+G{Ep !pq:hLYVI?/:.YE7FjW|he `ƥ.p[aREFtWx ȝ-V9ld@֖@Pf3i%mHp9BT~59iaCFAf +%䅸JMP|}@9DS}o|e1 yP39Yru1*>g |"dѫ}>oAT`ko{چE>]E \ 5\#xm֪c/\Mm=[҅SY&J"7%@mF)W~=bJO=;RBK}׌TD w.$]LADTSZ iՒTj g>1lp}dcL)]j FJkA15)% IǪ oƐZWqq*-hǸ`Qi݉GP䁔!öB6,VcB=I(plB *8umЄ)Duƣצ-|tC W;Z@$tIC"aY^%2&|ŒOx\tYY [xR5ϛM]K#Ռx/ 3,7QrbH:CX]~YV524ڑڻVbZ韌QqU($`†I N&FxBXv4 Oi89֦ Y@A7WK%C/I(B[*SpEGP~>H+p pU *փ̈ ctp4`,Zj^ʾGoػ*)B|@åYs *7 RfZD4T 3ZQZ)#݃üZVǣ,գrFVQ%%<-A )Zz݇jx턛YuWNA JYI\o>r5lԚX#fD>L!I' |`>YL@MлBs4җNzM` }-Zܱ͞z$5N-M/ahEaڵ5fԼ;f-I{71K=_8⻿|;u8>Ջ]rK]٤6TPvThuE$iJ>#-tV. Q{RXپkyvɄ (Uh2#nhJ0P!r6Wмzd3\>Y> DE(I/Ń"XYaLJ)(oJ cƚ4;6s,N* 9aj;;\|*BsEH x\-ju2] ?WE#Nx/D/5*I+,,j&{"}]5<5{:>VWc@κ];@ʯ36Es-[tʃb¨3p3pGȻn= w_pd8z5s" JA:vǜ