Difference between revisions of "Update deprecated openssl library from source code"

From wikieduonline
Jump to navigation Jump to search
 
(46 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
  #![[/usr/bin/env]] [[ansible-playbook]]  
 
  #![[/usr/bin/env]] [[ansible-playbook]]  
 
   
 
   
  - [[hosts:]] YOUR_HOSTNAME
+
  - [[hosts:]] localhost
   [[remote_user:]] YOUR_REMOTEUSER  
+
   #[[remote_user:]] YOUR_REMOTEUSER  
   [[become:]] yes
+
   #[[become:]] yes
   [[connection:]] ssh
+
   #[[connection:]] ssh
 
   
 
   
 
   [[tasks:]]
 
   [[tasks:]]
Line 10: Line 10:
 
       [[block:]]
 
       [[block:]]
 
       - [[package:]]
 
       - [[package:]]
           name: [[sysstat]]
+
           name:  
 +
            - [[perl-IPC-Cmd]]
 +
            - [[perl-Test-Harness]]
 +
            - [[perl-Test-Simple]]
 +
            - [[make]]
 
           [[state: present]]
 
           [[state: present]]
 
   
 
   
       - [[lineinfile:]]
+
       - ansible.builtin.[[unarchive]]:
           path: [[/etc/default/sysstat]]
+
           src: https://www.openssl.org/source/openssl-1.1.1v.tar.gz
           state: present
+
           dest: /tmp/
           backrefs: yes
+
           remote_src: yes
          [[regexp]]: '^ENABLED="false"'
 
          line: 'ENABLED="true"'
 
 
   
 
   
       - [[service:]]
+
       - [[shell:]] cd /tmp/openssl-*/ && ./config && make && make test && [[make install]]
          name: sysstat
+
            state: started
+
      - [[shell:]] echo "[[/usr/local/lib64]]" > [[/etc/ld.so.conf.d/openssl.conf]]
          enabled: yes
+
       when: [[ansible_distribution]] == 'Ubuntu'
+
      - [[shell:]] [[ldconfig]]
 +
 +
       [[when: (Ansible)|when:]] [[ansible_distribution_major_version]] == '7'
  
 +
 +
 +
 +
 +
     
 +
== Related ==
 +
* https://www.openssl.org/source/openssl-1.1.1w.tar.gz
 +
* https://www.openssl.org/source/openssl-3.0.7.tar.gz
 +
* [[Openssl]]
 +
* <code>[[get_url]]</code>
 +
* [[unarchive]]
 +
* [[when: (Ansible)|when:]]
 +
* [[openssl version]]
  
 
== See also ==
 
== See also ==

Latest revision as of 15:39, 5 February 2024

Advertising: