Unattended Upgrades + Playbooks (#51)
munin eingegrenzt Playbooks aufgeteilt header angepasst cahe valid time entfernt cache valid time angehoben update packeges in eigenes playbook vars playbook filter angepasst playbook rolle hinzugefügt Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#51 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
This commit is contained in:
parent
da63367b6f
commit
a27830107b
46 changed files with 1179 additions and 47 deletions
|
@ -2,9 +2,16 @@
|
|||
### wird in vielen Rollen verwendet
|
||||
empfaenger_mail: michael.grote@posteo.de
|
||||
file_header: |
|
||||
#------------------------------------------------------------------
|
||||
#- This file is managed with ansible! -
|
||||
#------------------------------------------------------------------
|
||||
#----------------------------------------------------------------#
|
||||
# This file is managed with ansible! #
|
||||
#----------------------------------------------------------------#
|
||||
### jnv.unattended_upgrades
|
||||
unattended_mail: "{{ empfaenger_mail }}"
|
||||
unattended_mail_only_on_error: true
|
||||
unattended_syslog_enable: true
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Ubuntu,archive=${distro_codename}-security'
|
||||
- 'o=Ubuntu,a=${distro_codename}-updates'
|
||||
### mgrote.ntp_chrony_server
|
||||
ntp_chrony_timezone: "Europe/Berlin" # Zeitzone in der sich der Computer befindet
|
||||
ntp_chrony_servers: # welche Server sollen befragt werden
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
---
|
||||
- import_playbook: 2_packages.yml
|
||||
- import_playbook: 3_base.yml
|
||||
- import_playbook: 5_personalisierung.yml
|
||||
- import_playbook: 6_haertung.yml
|
||||
- import_playbook: 7_monitoring.yml
|
||||
- import_playbook: 84_apt_sources.yml
|
||||
- import_playbook: 85_install_packages.yml
|
||||
- import_playbook: 86_unattended_upgrades.yml
|
||||
- import_playbook: 87_ntp_client.yml
|
||||
- import_playbook: 88_restic.yml
|
||||
- import_playbook: 89_users.yml
|
||||
- import_playbook: 90_tmux.yml
|
||||
- import_playbook: 91_motd.yml
|
||||
- import_playbook: 92_dotfiles.yml
|
||||
- import_playbook: 93_postfix.yml
|
||||
- import_playbook: 94_ufw.yml
|
||||
- import_playbook: 95_ssh_pass_login.yml
|
||||
- import_playbook: 96_f2b.yml
|
||||
- import_playbook: 97_monitoring.yml
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
- hosts: all
|
||||
serial: 3
|
||||
roles:
|
||||
- { role: mgrote.apt_manage_sources, tags: "apt_sources" }
|
||||
- { role: mgrote.apt_update_packages, tags: "updates"}
|
||||
- { role: mgrote.apt_install_packages, tags: "install"}
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.ntp_chrony_client,
|
||||
tags: "ntp",
|
||||
when: "not 'ntpserver' in group_names" }
|
||||
- { role: mgrote.restic, tags: "restic" }
|
||||
- { role: ryandaniels.create_users, tags: "user", become: yes }
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.motd, tags: "motd" }
|
||||
- { role: mgrote.tmux, tags: "tmux",
|
||||
when: "not 'proxmox' in group_names" }
|
||||
- { role: geerlingguy.dotfiles, become: true, tags: "dotfiles" }
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.fail2ban, tags: "f2b" }
|
||||
- { role: mgrote.postfix, tags: "postfix" }
|
||||
- { role: mgrote.deactivate_ssh_password_login,
|
||||
tags: "ssh",
|
||||
when: "not 'proxmox' in group_names" }
|
||||
- { role: oefenweb.ufw, # Regeln werden in den Group/Host-Vars gesetzt
|
||||
tags: "ufw",
|
||||
become: true,
|
||||
when: "not 'proxmox' in group_names" }
|
4
playbooks/base/84_apt_sources.yml
Normal file
4
playbooks/base/84_apt_sources.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.apt_manage_sources, tags: "apt_sources" }
|
5
playbooks/base/85_install_packages.yml
Normal file
5
playbooks/base/85_install_packages.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- hosts: all
|
||||
serial: 3
|
||||
roles:
|
||||
- { role: mgrote.apt_install_packages, tags: "install"}
|
7
playbooks/base/86_unattended_upgrades.yml
Normal file
7
playbooks/base/86_unattended_upgrades.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- hosts: all:!proxmox
|
||||
roles:
|
||||
- { role: jnv.unattended_upgrades,
|
||||
become: true,
|
||||
tags: unattended,
|
||||
when: "ansible_facts['distribution'] == 'Ubuntu'"}
|
5
playbooks/base/87_ntp_client.yml
Normal file
5
playbooks/base/87_ntp_client.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- hosts: all:!ntpserver
|
||||
roles:
|
||||
- { role: mgrote.ntp_chrony_client,
|
||||
tags: "ntp"}
|
4
playbooks/base/88_restic.yml
Normal file
4
playbooks/base/88_restic.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.restic, tags: "restic" }
|
4
playbooks/base/89_users.yml
Normal file
4
playbooks/base/89_users.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: ryandaniels.create_users, tags: "user", become: yes }
|
4
playbooks/base/90_tmux.yml
Normal file
4
playbooks/base/90_tmux.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all:!proxmox
|
||||
roles:
|
||||
- { role: mgrote.tmux, tags: "tmux"}
|
4
playbooks/base/91_motd.yml
Normal file
4
playbooks/base/91_motd.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.motd, tags: "motd" }
|
4
playbooks/base/92_dotfiles.yml
Normal file
4
playbooks/base/92_dotfiles.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: geerlingguy.dotfiles, become: true, tags: "dotfiles" }
|
4
playbooks/base/93_postfix.yml
Normal file
4
playbooks/base/93_postfix.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.postfix, tags: "postfix" }
|
6
playbooks/base/94_ufw.yml
Normal file
6
playbooks/base/94_ufw.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
- hosts: all:!proxmox
|
||||
roles:
|
||||
- { role: oefenweb.ufw, # Regeln werden in den Group/Host-Vars gesetzt
|
||||
tags: "ufw",
|
||||
become: true}
|
5
playbooks/base/95_ssh_pass_login.yml
Normal file
5
playbooks/base/95_ssh_pass_login.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- hosts: all:!proxmox
|
||||
roles:
|
||||
- { role: mgrote.deactivate_ssh_password_login,
|
||||
tags: "ssh"}
|
4
playbooks/base/96_f2b.yml
Normal file
4
playbooks/base/96_f2b.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- { role: mgrote.fail2ban, tags: "f2b" }
|
|
@ -1,10 +1,9 @@
|
|||
---
|
||||
- hosts: all
|
||||
- hosts: proxmoxprod
|
||||
roles:
|
||||
- { role: geerlingguy.munin-node,
|
||||
become: true,
|
||||
tags: "munin",
|
||||
when: "not 'test' in group_names" }
|
||||
tags: "munin"}
|
||||
### Die Host müssen auch beim Docker-Container: "munin-master eingetragen" werden.
|
||||
### wird nur auf physischen Rechnern ausgeführt.
|
||||
### Wenn ein Plugin nicht geht: munin-node-configure --shell --families=contrib,auto | sh -x
|
5
playbooks/base/98_update_packages.yml
Normal file
5
playbooks/base/98_update_packages.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- hosts: all
|
||||
serial: 3
|
||||
roles:
|
||||
- { role: mgrote.apt_update_packages, tags: "updates"}
|
2
roles/jnv.unattended_upgrades/.ansible-lint
Normal file
2
roles/jnv.unattended_upgrades/.ansible-lint
Normal file
|
@ -0,0 +1,2 @@
|
|||
skip_list:
|
||||
- '503'
|
9
roles/jnv.unattended_upgrades/.editorconfig
Normal file
9
roles/jnv.unattended_upgrades/.editorconfig
Normal file
|
@ -0,0 +1,9 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
17
roles/jnv.unattended_upgrades/.github/workflows/ansible-linting-check.yml
vendored
Normal file
17
roles/jnv.unattended_upgrades/.github/workflows/ansible-linting-check.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Ansible Lint check
|
||||
# visit https://github.com/marketplace/actions/ansible-lint for infos
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Lint Ansible Playbook
|
||||
uses: ansible/ansible-lint-action@master
|
||||
with:
|
||||
targets: "."
|
3
roles/jnv.unattended_upgrades/.gitignore
vendored
Normal file
3
roles/jnv.unattended_upgrades/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.vagrant/
|
||||
*~
|
||||
*.log
|
16
roles/jnv.unattended_upgrades/.travis.yml
Normal file
16
roles/jnv.unattended_upgrades/.travis.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
sudo: required
|
||||
language: python
|
||||
services: docker
|
||||
|
||||
cache: pip
|
||||
|
||||
install:
|
||||
- pip install ansible docker
|
||||
- ansible-galaxy install -r tests/requirements.yml -p tests/roles/
|
||||
|
||||
script:
|
||||
- ansible --version
|
||||
- tests/test.sh
|
||||
|
||||
notifications:
|
||||
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
339
roles/jnv.unattended_upgrades/LICENSE
Normal file
339
roles/jnv.unattended_upgrades/LICENSE
Normal file
|
@ -0,0 +1,339 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
199
roles/jnv.unattended_upgrades/README.md
Normal file
199
roles/jnv.unattended_upgrades/README.md
Normal file
|
@ -0,0 +1,199 @@
|
|||
# Unattended-Upgrades Role for Ansible
|
||||
|
||||
[![Build Status of branch master](https://img.shields.io/travis/jnv/ansible-role-unattended-upgrades/master.svg?style=flat-square)](https://travis-ci.org/jnv/ansible-role-unattended-upgrades)
|
||||
[![Ansible Role: jnv.unattended-upgrades](https://img.shields.io/ansible/role/8068.svg?style=flat-square)](https://galaxy.ansible.com/jnv/unattended-upgrades/)
|
||||
|
||||
Install and setup [unattended-upgrades](https://launchpad.net/unattended-upgrades) for Ubuntu and Debian (since Wheezy), to periodically install security upgrades.
|
||||
|
||||
**NOTE:** If you have used version 0.0.1 of the role, you can delete the file `/etc/apt/apt.conf.d/10periodic` as it is not needed anymore. You can use the following one-shot command:
|
||||
|
||||
ansible -m file -a "state=absent path=/etc/apt/apt.conf.d/10periodic" <host-pattern>
|
||||
|
||||
## Requirements
|
||||
|
||||
The role uses [apt module](http://docs.ansible.com/apt_repository_module.html) which has additional dependencies.
|
||||
|
||||
If you set `unattended_mail` to an e-mail address, make sure `mailx` command is available and your system is able to send e-mails.
|
||||
|
||||
The role requires unattended-upgrades version 0.70 and newer, which is available since Debian Wheezy and Ubuntu 12.04 respectively. This is due to [Origins Patterns](#origins-patterns) usage; if this is not available on your system, you may use [the first version of the role](https://github.com/jnv/ansible-role-unattended-upgrades/tree/v0.1).
|
||||
|
||||
### Automatic Reboot
|
||||
|
||||
If you enable automatic reboot feature (`unattended_automatic_reboot`), the role will attempt to install `update-notifier-common` package, which is required on some systems for detecting and executing reboot after the upgrade. You may optionally define a specific time for rebooting (`unattended_automatic_reboot_time`).
|
||||
|
||||
This feature was broken in Debian Jessie, but eventually was rolled into the unattended-upgrades package; see [the discussion in #6](https://github.com/jnv/ansible-role-unattended-upgrades/issues/6) for more details.
|
||||
|
||||
## Disabled Cron Jobs
|
||||
|
||||
On some hosts you may find that the unattended-upgrade's cronfile `/etc/cron.daily/apt` file has been renamed to `apt.disabled`. This is possibly provider's decision, to save some CPU cycles. Use [enable-standard-cronjobs](https://github.com/Yannik/ansible-role-enable-standard-cronjobs) role to reenable unattended-upgrades. See also discussion in [#9](https://github.com/jnv/ansible-role-unattended-upgrades/issues/9).
|
||||
|
||||
## Role Variables
|
||||
|
||||
* `unattended_cache_valid_time`: Update the apt cache if its older than the given time in seconds; passed to the [apt module](https://docs.ansible.com/ansible/latest/apt_module.html) during package installation.
|
||||
* Default: `3600`
|
||||
* `unattended_origins_patterns`: array of origins patterns to determine whether the package can be automatically installed, for more details see [Origins Patterns](#origins-patterns) below.
|
||||
* Default for Debian: `['origin=Debian,codename=${distro_codename},label=Debian-Security']`
|
||||
* Default for Ubuntu: `['origin=Ubuntu,archive=${distro_codename}-security,label=Ubuntu']`
|
||||
* `unattended_package_blacklist`: packages which won't be automatically upgraded
|
||||
* Default: `[]`
|
||||
* `unattended_autofix_interrupted_dpkg`: whether on unclean dpkg exit to run `dpkg --force-confold --configure -a`
|
||||
* Default: `true`
|
||||
* `unattended_minimal_steps`: split the upgrade into the smallest possible chunks so that they can be interrupted with SIGUSR1.
|
||||
* Default: `true`
|
||||
* `unattended_install_on_shutdown`: install all unattended-upgrades when the machine is shuting down.
|
||||
* Default: `false`
|
||||
* `unattended_mail`: e-mail address to send information about upgrades or problems with unattended upgrades
|
||||
* Default: `false` (don't send any e-mail)
|
||||
* `unattended_mail_only_on_error`: send e-mail only on errors, otherwise e-mail will be sent every time there's a package upgrade.
|
||||
* Default: `false`
|
||||
* `unattended_remove_unused_dependencies`: do automatic removal of all unused dependencies after the upgrade.
|
||||
* Default: `false`
|
||||
* `unattended_remove_new_unused_dependencies`: do automatic removal of new unused dependencies after the upgrade.
|
||||
* Default: `true`
|
||||
* `unattended_automatic_reboot`: Automatically reboot system if any upgraded package requires it, immediately after the upgrade.
|
||||
* Default: `false`
|
||||
* `unattended_automatic_reboot_time`: Automatically reboot system if any upgraded package requires it, at the specific time (_HH:MM_) instead of immediately after the upgrade.
|
||||
* Default: `false`
|
||||
* `unattended_update_days`: Set the days of the week that updates should be applied. The days can be specified as localized abbreviated or full names. Or as integers where "0" is Sunday, "1" is Monday etc. Example: `{"Mon";"Fri"};`
|
||||
* Default: disabled
|
||||
* `unattended_ignore_apps_require_restart`: unattended-upgrades won't automatically upgrade some critical packages requiring restart after an upgrade (i.e. there is `XB-Upgrade-Requires: app-restart` directive in their debian/control file). With this option set to `true`, unattended-upgrades will upgrade these packages regardless of the directive.
|
||||
* Default: `false`
|
||||
* `unattended_syslog_enable`: Write events to syslog, which is useful in environments where syslog messages are sent to a central store.
|
||||
* Default: `false`
|
||||
* `unattended_syslog_facility`: Write events to the specified syslog facility, or the daemon facility if not specified. Will only have affect if `unattended_syslog_enable` is set to `true`.
|
||||
* Default: `daemon`
|
||||
* `unattended_verbose`: Define verbosity level of APT for periodic runs. The output will be sent to root.
|
||||
* Possible options:
|
||||
* `0`: no report
|
||||
* `1`: progress report
|
||||
* `2`: + command outputs
|
||||
* `3`: + trace on
|
||||
* Default: `0` (no report)
|
||||
* `unattended_update_package_list`: Do "apt-get update" automatically every n-days (0=disable)
|
||||
* Default: `1`
|
||||
* `unattended_download_upgradeable`: Do "apt-get upgrade --download-only" every n-days (0=disable)
|
||||
* Default: `0`
|
||||
* `unattended_autoclean_interval`: Do "apt-get autoclean" every n-days (0=disable)
|
||||
* Default: `7`
|
||||
* `unattended_clean_interval`: Do "apt-get clean" every n-days (0=disable)
|
||||
* Default: `0`
|
||||
* `unattended_random_sleep`: Define maximum for a random interval in seconds after which the apt job starts (only for systems without systemd)
|
||||
* Default: `1800` (30 minutes)
|
||||
* `unattended_dpkg_options`: Array of dpkg command-line options used during unattended-upgrades runs, e.g. `["--force-confdef"]`, `["--force-confold"]`
|
||||
* Default: `[]`
|
||||
* `unattended_dl_limit`: Limit the download speed in kb/sec using apt bandwidth limit feature.
|
||||
* Default: disabled
|
||||
|
||||
## Origins Patterns
|
||||
|
||||
Origins Pattern is a more powerful alternative to the Allowed Origins option used in previous versions of unattended-upgrade.
|
||||
|
||||
Pattern is composed from specific keywords:
|
||||
|
||||
* `a`,`archive`,`suite` – e.g. `stable`, `trusty-security` (`archive=stable`)
|
||||
* `c`,`component` – e.g. `main`, `crontrib`, `non-free` (`component=main`)
|
||||
* `l`,`label` – e.g. `Debian`, `Debian-Security`, `Ubuntu`
|
||||
* `o`,`origin` – e.g. `Debian`, `Unofficial Multimedia Packages`, `Ubuntu`
|
||||
* `n`,`codename` – e.g. `jessie`, `jessie-updates`, `trusty` (this is only supported with `unattended-upgrades` >= 0.80)
|
||||
* `site` – e.g. `http.debian.net`
|
||||
|
||||
You can review the available repositories using `apt-cache policy` and debug your choice using `unattended-upgrades -d` command on a target system.
|
||||
|
||||
Additionally unattended-upgrades support two macros (variables), derived from `/etc/debian_version`:
|
||||
|
||||
* `${distro_id}` – Installed distribution name, e.g. `Debian` or `Ubuntu`.
|
||||
* `${distro_codename}` – Installed codename, e.g. `jessie` or `trusty`.
|
||||
|
||||
Using `${distro_codename}` should be preferred over using `stable` or `oldstable` as a selected, as once `stable` moves to `oldstable`, no security updates will be installed at all, or worse, package from a newer distro release will be installed by accident. The same goes for upgrading your installation from `oldstable` to `stable`, if you forget to change this in your origin patterns, you may not receive the security updates for your newer distro release. With `${distro_codename}`, both cases can never happen.
|
||||
|
||||
## Role Usage Examples
|
||||
|
||||
Example for Ubuntu, with custom [origins patterns](#patterns-examples), blacklisted packages and e-mail notification:
|
||||
|
||||
```yaml
|
||||
- hosts: all
|
||||
roles:
|
||||
- role: jnv.unattended-upgrades
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Ubuntu,archive=${distro_codename}-security'
|
||||
- 'o=Ubuntu,a=${distro_codename}-updates'
|
||||
unattended_package_blacklist: [cowsay, vim]
|
||||
unattended_mail: 'root@example.com'
|
||||
```
|
||||
|
||||
_Note:_ You don't need to specify `unattended_origins_patterns`, the role will use distribution's default if the variable is not set.
|
||||
|
||||
### Running Only on Debian-based Systems
|
||||
|
||||
If you manage multiple distribution with the same playbook, you may want to skip running this role on non-Debian systems. You can [use `when` conditional with role](https://docs.ansible.com/ansible/latest/user_guide/playbooks_conditionals.html#conditionals-with-roles) to limit the role to particular systems:
|
||||
|
||||
```yaml
|
||||
- hosts: all
|
||||
roles:
|
||||
- role: jnv.unattended-upgrades
|
||||
when: ansible_facts['os_family'] == 'Debian'
|
||||
```
|
||||
|
||||
See [#38](https://github.com/jnv/ansible-role-unattended-upgrades/pull/38) for discussion.
|
||||
|
||||
### Patterns Examples
|
||||
|
||||
By default, only security updates are allowed for both Ubuntu and Debian. You can add more patterns to allow unattended-updates install more packages automatically, however be aware that automated major updates may potentially break your system.
|
||||
|
||||
#### For Debian
|
||||
|
||||
```yaml
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Debian,codename=${distro_codename},label=Debian-Security' # security updates
|
||||
- 'o=Debian,codename=${distro_codename},label=Debian' # updates including non-security updates
|
||||
- 'o=Debian,codename=${distro_codename},a=proposed-updates'
|
||||
```
|
||||
|
||||
On debian wheezy, due to `unattended-upgrades` being `0.79.5`, you cannot use the `codename` directive.
|
||||
|
||||
You will have to do archive based matching instead:
|
||||
|
||||
```yaml
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Debian,a=stable,label=Debian-Security' # security updates
|
||||
- 'o=Debian,a=stable,l=Debian' # updates including non-security updates
|
||||
- 'o=Debian,a=proposed-updates'
|
||||
```
|
||||
|
||||
Please be sure to read about the issues regarding this in the origin pattern documentation above.
|
||||
|
||||
#### For Ubuntu
|
||||
|
||||
In Ubuntu, archive always contains the distribution codename
|
||||
|
||||
```yaml
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Ubuntu,archive=${distro_codename}-security'
|
||||
- 'o=Ubuntu,a=${distro_codename}'
|
||||
- 'o=Ubuntu,a=${distro_codename}-updates'
|
||||
- 'o=Ubuntu,a=${distro_codename}-proposed-updates'
|
||||
```
|
||||
|
||||
|
||||
#### For Raspbian
|
||||
|
||||
In Raspbian, it is only possible to update all packages from the default repository, including non-security updates, or updating none.
|
||||
|
||||
Updating all, including non-security:
|
||||
|
||||
```yaml
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Raspbian,codename=${distro_codename},label=Raspbian'
|
||||
```
|
||||
|
||||
You can not use the `codename` directive on raspbian wheezy, the same as with debian wheezy above.
|
||||
|
||||
To not install any updates on a raspbian host, just set `unattended_origins_patterns` to an empty list:
|
||||
```
|
||||
unattended_origins_patterns: []
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
GPLv2
|
137
roles/jnv.unattended_upgrades/defaults/main.yml
Normal file
137
roles/jnv.unattended_upgrades/defaults/main.yml
Normal file
|
@ -0,0 +1,137 @@
|
|||
---
|
||||
# Cache update time for apt module
|
||||
unattended_cache_valid_time: 3600
|
||||
|
||||
#Unattended-Upgrade::Origins-Pattern
|
||||
# Automatically upgrade packages from these origin patterns
|
||||
# e.g.: 'o=Debian,a=stable', 'o=Debian,a=stable-updates'
|
||||
#
|
||||
# Left unset, distribution-specific defaults will be used through
|
||||
# __unattended_origins_patterns variable only if this variable
|
||||
# is not provided externally
|
||||
# REFS https://github.com/ansible/ansible/issues/8121
|
||||
#unattended_origins_patterns: []
|
||||
|
||||
#Unattended-Upgrade::Package-Blacklist
|
||||
# List of packages to not update
|
||||
unattended_package_blacklist: []
|
||||
|
||||
#Unattended-Upgrade::AutoFixInterruptedDpkg
|
||||
# On a unclean dpkg exit unattended-upgrades will run
|
||||
# dpkg --force-confold --configure -a
|
||||
# The default is true, to ensure updates keep getting installed
|
||||
unattended_autofix_interrupted_dpkg: true
|
||||
|
||||
#Unattended-Upgrade::MinimalSteps
|
||||
# Split the upgrade into the smallest possible chunks so that
|
||||
# they can be interrupted with SIGUSR1. This makes the upgrade
|
||||
# a bit slower but it has the benefit that shutdown while a upgrade
|
||||
# is running is possible (with a small delay)
|
||||
unattended_minimal_steps: true
|
||||
|
||||
#Unattended-Upgrade::InstallOnShutdown
|
||||
# Install all unattended-upgrades when the machine is shuting down
|
||||
# instead of doing it in the background while the machine is running
|
||||
# This will (obviously) make shutdown slower
|
||||
unattended_install_on_shutdown: false
|
||||
|
||||
#Unattended-Upgrade::Mail
|
||||
# Send email to this address for problems or packages upgrades
|
||||
# If empty or unset then no email is sent, make sure that you
|
||||
# have a working mail setup on your system. A package that provides
|
||||
# 'mailx' must be installed.
|
||||
unattended_mail: false
|
||||
|
||||
#Unattended-Upgrade::MailOnlyOnError
|
||||
# Set this value to "true" to get emails only on errors. Default
|
||||
# is to always send a mail if Unattended-Upgrade::Mail is set
|
||||
unattended_mail_only_on_error: false
|
||||
|
||||
#Unattended-Upgrade::Remove-Unused-Dependencies
|
||||
# Do automatic removal of all unused dependencies after the upgrade
|
||||
# (equivalent to apt-get autoremove)
|
||||
unattended_remove_unused_dependencies: false
|
||||
|
||||
#Unattended-Upgrade::Remove-New-Unused-Dependencies
|
||||
# Remove any new unused dependencies after the upgrade
|
||||
unattended_remove_new_unused_dependencies: true
|
||||
|
||||
#Unattended-Upgrade::Automatic-Reboot
|
||||
# Automatically reboot *WITHOUT CONFIRMATION* if a
|
||||
# the file /var/run/reboot-required is found after the upgrade
|
||||
unattended_automatic_reboot: false
|
||||
|
||||
#Unattended-Upgrade::Automatic-Reboot-Time
|
||||
# If automatic reboot is enabled and needed, reboot at the specific
|
||||
# time instead of immediately
|
||||
unattended_automatic_reboot_time: false
|
||||
|
||||
#Unattended-Upgrade::IgnoreAppsRequireRestart
|
||||
# Do upgrade application even if it requires restart after upgrade
|
||||
# I.e. "XB-Upgrade-Requires: app-restart" is set in the debian/control file
|
||||
unattended_ignore_apps_require_restart: false
|
||||
|
||||
#Unattended-Upgrade::SyslogEnable
|
||||
# Write events to syslog, which is useful in environments where syslog
|
||||
# messages are sent to a central store.
|
||||
unattended_syslog_enable: false
|
||||
|
||||
#Unattended-Upgrade::SyslogFacility
|
||||
# Write events to the specified syslog facility, or the daemon facility if
|
||||
# not specified. Requires the Unattended-Upgrade::SyslogEnable option to be
|
||||
# set to true.
|
||||
#unattended_syslog_facility: "daemon"
|
||||
|
||||
### APT::Periodic configuration
|
||||
# Snatched from /usr/lib/apt/apt.systemd.daily
|
||||
|
||||
#APT::Periodic::Update-Package-Lists "0";
|
||||
# - Do "apt-get update" automatically every n-days (0=disable)
|
||||
unattended_update_package_list: 1
|
||||
|
||||
#APT::Periodic::Download-Upgradeable-Packages "0";
|
||||
# - Do "apt-get upgrade --download-only" every n-days (0=disable)
|
||||
#unattended_download_upgradeable: 0
|
||||
|
||||
#APT::Periodic::AutocleanInterval "0";
|
||||
# - Do "apt-get autoclean" every n-days (0=disable)
|
||||
unattended_autoclean_interval: 7
|
||||
|
||||
#APT::Periodic::CleanInterval "0";
|
||||
# - Do "apt-get clean" every n-days (0=disable)
|
||||
#unattended_clean_interval: 0
|
||||
|
||||
#APT::Periodic::Verbose "0";
|
||||
# - Send report mail to root
|
||||
# 0: no report (or null string)
|
||||
# 1: progress report (actually any string)
|
||||
# 2: + command outputs (remove -qq, remove 2>/dev/null, add -d)
|
||||
# 3: + trace on
|
||||
#unattended_verbose: 0
|
||||
|
||||
## Cron systems only
|
||||
|
||||
#APT::Periodic::RandomSleep
|
||||
# When the apt job starts, it will sleep for a random period between 0
|
||||
# and APT::Periodic::RandomSleep seconds
|
||||
# The default value is "1800" so that the script will stall for up to 30
|
||||
# minutes (1800 seconds) so that the mirror servers are not crushed by
|
||||
# everyone running their updates all at the same time
|
||||
# Kept undefined to allow default (1800)
|
||||
#unattended_random_sleep: 0
|
||||
|
||||
#Dpkg::Options
|
||||
# Provide dpkg options that take effect during unattended upgrades.
|
||||
# By default no flags are appended. Configuration file changes can
|
||||
# block installation of certain packages. Passing the flags
|
||||
# "--force-confdef" and "--force-confold" will ensure updates are applied
|
||||
# and old configuration files are preserved.
|
||||
unattended_dpkg_options: []
|
||||
|
||||
# unattended_dpkg_options:
|
||||
# - "--force-confdef"
|
||||
# - "--force-confold"
|
||||
|
||||
|
||||
# Use apt bandwidth limit feature, this example limits the download speed to 70kb/sec
|
||||
#unattended_dl_limit: 70
|
2
roles/jnv.unattended_upgrades/handlers/main.yml
Normal file
2
roles/jnv.unattended_upgrades/handlers/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
# handlers file for unattended-upgrades
|
38
roles/jnv.unattended_upgrades/meta/main.yml
Normal file
38
roles/jnv.unattended_upgrades/meta/main.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
galaxy_info:
|
||||
author: Jan Vlnas
|
||||
description: Setup unattended-upgrades on Debian-based systems
|
||||
license: GPLv2
|
||||
min_ansible_version: 1.4
|
||||
platforms:
|
||||
- name: Ubuntu
|
||||
versions:
|
||||
- precise
|
||||
- raring
|
||||
- saucy
|
||||
- trusty
|
||||
- utopic
|
||||
- name: Debian
|
||||
versions:
|
||||
- wheezy
|
||||
- jessie
|
||||
#
|
||||
# Below are all categories currently available. Just as with
|
||||
# the platforms above, uncomment those that apply to your role.
|
||||
#
|
||||
galaxy_tags:
|
||||
#- cloud
|
||||
#- cloud:ec2
|
||||
#- cloud:gce
|
||||
#- cloud:rax
|
||||
#- database
|
||||
#- database:nosql
|
||||
#- database:sql
|
||||
#- development
|
||||
#- monitoring
|
||||
#- networking
|
||||
#- packaging
|
||||
- system
|
||||
#- web
|
||||
dependencies: []
|
||||
|
2
roles/jnv.unattended_upgrades/tasks/main.yml
Normal file
2
roles/jnv.unattended_upgrades/tasks/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
- include: unattended-upgrades.yml
|
||||
tags: unattended
|
9
roles/jnv.unattended_upgrades/tasks/reboot.yml
Normal file
9
roles/jnv.unattended_upgrades/tasks/reboot.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
# Ignored, since newer distros don't need this package
|
||||
# https://github.com/jnv/ansible-role-unattended-upgrades/issues/6
|
||||
- name: install update-notifier-common
|
||||
apt:
|
||||
pkg: update-notifier-common
|
||||
state: present
|
||||
failed_when: false
|
||||
|
34
roles/jnv.unattended_upgrades/tasks/unattended-upgrades.yml
Normal file
34
roles/jnv.unattended_upgrades/tasks/unattended-upgrades.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
- name: add distribution-specific variables
|
||||
include_vars: "{{ ansible_distribution }}.yml"
|
||||
|
||||
- name: add Debian Wheezy workaround
|
||||
include_vars: "{{ ansible_distribution }}-{{ ansible_distribution_release }}.yml"
|
||||
when: (ansible_distribution == "Debian") and (ansible_distribution_release == "wheezy")
|
||||
|
||||
- name: install unattended-upgrades
|
||||
apt:
|
||||
pkg: unattended-upgrades
|
||||
state: present
|
||||
cache_valid_time: "{{ unattended_cache_valid_time }}"
|
||||
update_cache: yes
|
||||
|
||||
- name: install reboot dependencies
|
||||
include: reboot.yml
|
||||
when: unattended_automatic_reboot|bool
|
||||
|
||||
- name: create APT auto-upgrades configuration
|
||||
template:
|
||||
src: auto-upgrades.j2
|
||||
dest: /etc/apt/apt.conf.d/20auto-upgrades
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
|
||||
- name: create unattended-upgrades configuration
|
||||
template:
|
||||
src: unattended-upgrades.j2
|
||||
dest: /etc/apt/apt.conf.d/50unattended-upgrades
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
27
roles/jnv.unattended_upgrades/templates/auto-upgrades.j2
Normal file
27
roles/jnv.unattended_upgrades/templates/auto-upgrades.j2
Normal file
|
@ -0,0 +1,27 @@
|
|||
// {{ ansible_managed }}
|
||||
|
||||
APT::Periodic::Unattended-Upgrade "1";
|
||||
|
||||
{% if unattended_update_package_list is defined %}
|
||||
APT::Periodic::Update-Package-Lists "{{unattended_update_package_list}}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_download_upgradeable is defined %}
|
||||
APT::Periodic::Download-Upgradeable-Packages "{{unattended_download_upgradeable}}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_autoclean_interval is defined %}
|
||||
APT::Periodic::AutocleanInterval "{{unattended_autoclean_interval}}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_clean_interval is defined %}
|
||||
APT::Periodic::CleanInterval "{{unattended_clean_interval}}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_verbose is defined %}
|
||||
APT::Periodic::Verbose "{{unattended_verbose}}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_random_sleep is defined %}
|
||||
APT::Periodic::RandomSleep "{{unattended_random_sleep}}";
|
||||
{% endif %}
|
123
roles/jnv.unattended_upgrades/templates/unattended-upgrades.j2
Normal file
123
roles/jnv.unattended_upgrades/templates/unattended-upgrades.j2
Normal file
|
@ -0,0 +1,123 @@
|
|||
// {{ ansible_managed }}
|
||||
|
||||
// Unattended-Upgrade::Origins-Pattern controls which packages are
|
||||
// upgraded.
|
||||
Unattended-Upgrade::Origins-Pattern {
|
||||
{% if unattended_origins_patterns is defined %}
|
||||
{% for origin in unattended_origins_patterns %}
|
||||
"{{ origin }}";
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
{% for origin in __unattended_origins_patterns %}
|
||||
"{{ origin }}";
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
};
|
||||
|
||||
// List of packages to not update (regexp are supported)
|
||||
Unattended-Upgrade::Package-Blacklist {
|
||||
{% for package in unattended_package_blacklist %}
|
||||
"{{package}}";
|
||||
{% endfor %}
|
||||
};
|
||||
|
||||
{% if not unattended_autofix_interrupted_dpkg %}
|
||||
// This option allows you to control if on a unclean dpkg exit
|
||||
// unattended-upgrades will automatically run
|
||||
// dpkg --force-confold --configure -a
|
||||
// The default is true, to ensure updates keep getting installed
|
||||
Unattended-Upgrade::AutoFixInterruptedDpkg "false";
|
||||
{% endif %}
|
||||
|
||||
// Split the upgrade into the smallest possible chunks so that
|
||||
// they can be interrupted with SIGUSR1. This makes the upgrade
|
||||
// a bit slower but it has the benefit that shutdown while a upgrade
|
||||
// is running is possible (with a small delay)
|
||||
Unattended-Upgrade::MinimalSteps "{{ unattended_minimal_steps | lower }}";
|
||||
|
||||
{% if unattended_install_on_shutdown %}
|
||||
// Install all unattended-upgrades when the machine is shuting down
|
||||
// instead of doing it in the background while the machine is running
|
||||
// This will (obviously) make shutdown slower
|
||||
Unattended-Upgrade::InstallOnShutdown "true";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_mail %}
|
||||
// Send email to this address for problems or packages upgrades
|
||||
// If empty or unset then no email is sent, make sure that you
|
||||
// have a working mail setup on your system. A package that provides
|
||||
// 'mailx' must be installed.
|
||||
Unattended-Upgrade::Mail "{{unattended_mail}}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_mail_only_on_error %}
|
||||
// Set this value to "true" to get emails only on errors. Default
|
||||
// is to always send a mail if Unattended-Upgrade::Mail is set
|
||||
Unattended-Upgrade::MailOnlyOnError "true";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_remove_unused_dependencies %}
|
||||
// Do automatic removal of all unused dependencies after the upgrade
|
||||
// (equivalent to apt-get autoremove)
|
||||
Unattended-Upgrade::Remove-Unused-Dependencies "true";
|
||||
{% endif %}
|
||||
|
||||
{% if not unattended_remove_new_unused_dependencies %}
|
||||
// Do automatic removal of new unused dependencies after the upgrade
|
||||
Unattended-Upgrade::Remove-New-Unused-Dependencies "false";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_automatic_reboot %}
|
||||
// Automatically reboot *WITHOUT CONFIRMATION* if a
|
||||
// the file /var/run/reboot-required is found after the upgrade
|
||||
Unattended-Upgrade::Automatic-Reboot "true";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_automatic_reboot_time %}
|
||||
// If automatic reboot is enabled and needed, reboot at the specific
|
||||
// time instead of immediately
|
||||
// Default: "now"
|
||||
Unattended-Upgrade::Automatic-Reboot-Time "{{ unattended_automatic_reboot_time }}";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_update_days is defined %}
|
||||
// Set the days of the week that updates should be applied. The days can be specified
|
||||
// as localized abbreviated or full names. Or as integers where "0" is Sunday, "1" is
|
||||
// Monday etc.
|
||||
// Example - apply updates only on Monday and Friday:
|
||||
// {"Mon";"Fri"};
|
||||
Unattended-Upgrade::Update-Days {{ unattended_update_days }};
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_ignore_apps_require_restart %}
|
||||
// Do upgrade application even if it requires restart after upgrade
|
||||
// I.e. "XB-Upgrade-Requires: app-restart" is set in the debian/control file
|
||||
Unattended-Upgrade::IgnoreAppsRequireRestart "true";
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_syslog_enable %}
|
||||
// Write events to syslog, which is useful in environments where syslog
|
||||
// messages are sent to a central store.
|
||||
Unattended-Upgrade::SyslogEnable "{{ unattended_syslog_enable }}";
|
||||
{% if unattended_syslog_facility is defined %}
|
||||
// Write events to the specified syslog facility, or the daemon facility
|
||||
// if not specified. Requires the Unattended-Upgrade::SyslogEnable option
|
||||
// to be set to true.
|
||||
Unattended-Upgrade::SyslogFacility "{{ unattended_syslog_facility }}";
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_dpkg_options %}
|
||||
// Append options for governing dpkg behavior, e.g. --force-confdef.
|
||||
Dpkg::Options {
|
||||
{% for dpkg_option in unattended_dpkg_options %}
|
||||
"{{ dpkg_option }}";
|
||||
{% endfor %}
|
||||
};
|
||||
{% endif %}
|
||||
|
||||
{% if unattended_dl_limit is defined %}
|
||||
// Use apt bandwidth limit feature, this example limits the download
|
||||
// speed to 70kb/sec
|
||||
Acquire::http::Dl-Limit "{{ unattended_dl_limit }}";
|
||||
{% endif %}
|
3
roles/jnv.unattended_upgrades/tests/ansible.cfg
Normal file
3
roles/jnv.unattended_upgrades/tests/ansible.cfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
[defaults]
|
||||
roles_path = ../../
|
||||
retry_files_enabled = False
|
1
roles/jnv.unattended_upgrades/tests/inventory
Normal file
1
roles/jnv.unattended_upgrades/tests/inventory
Normal file
|
@ -0,0 +1 @@
|
|||
localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python"
|
3
roles/jnv.unattended_upgrades/tests/requirements.yml
Normal file
3
roles/jnv.unattended_upgrades/tests/requirements.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- src: chrismeyersfsu.provision_docker
|
||||
name: provision_docker
|
29
roles/jnv.unattended_upgrades/tests/test.sh
Normal file
29
roles/jnv.unattended_upgrades/tests/test.sh
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Exit on any individual command failure
|
||||
set -e
|
||||
|
||||
# Pretty colors.
|
||||
red='\033[0;31m'
|
||||
green='\033[0;32m'
|
||||
neutral='\033[0m'
|
||||
|
||||
section() {
|
||||
echo -e "\033[33;1m$1\033[0m"
|
||||
}
|
||||
|
||||
fold_start() {
|
||||
echo -e "travis_fold:start:$1\033[33;1m$2\033[0m"
|
||||
}
|
||||
|
||||
fold_end() {
|
||||
echo -e "\ntravis_fold:end:$1\r"
|
||||
}
|
||||
|
||||
# Ensure we are in the tests dir
|
||||
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
||||
|
||||
section "Syntax check"
|
||||
ansible-playbook -i inventory --syntax-check test.yml
|
||||
section "Running role"
|
||||
ansible-playbook -i inventory test.yml
|
77
roles/jnv.unattended_upgrades/tests/test.yml
Normal file
77
roles/jnv.unattended_upgrades/tests/test.yml
Normal file
|
@ -0,0 +1,77 @@
|
|||
---
|
||||
- name: Bring up Docker containers
|
||||
hosts: localhost
|
||||
gather_facts: false
|
||||
vars:
|
||||
inventory:
|
||||
- name: ubuntu_latest
|
||||
image: "ubuntu:latest"
|
||||
- name: ubuntu_bionic
|
||||
image: "ubuntu:bionic"
|
||||
- name: ubuntu_xenial
|
||||
image: "ubuntu:xenial"
|
||||
- name: ubuntu_trusty
|
||||
image: "ubuntu:trusty"
|
||||
# 6/2020: Disabled Debian Testing due to missing python packages (python-apt)
|
||||
#- name: debian_testing
|
||||
# image: "debian:testing"
|
||||
- name: debian_stable
|
||||
image: "debian:stable"
|
||||
- name: debian_oldstable
|
||||
image: "debian:oldstable"
|
||||
roles:
|
||||
- role: provision_docker
|
||||
provision_docker_inventory: "{{ inventory }}"
|
||||
provision_docker_privileged: true
|
||||
provision_docker_use_docker_connection: true
|
||||
|
||||
- name: Test role
|
||||
hosts: docker_containers
|
||||
gather_facts: false
|
||||
pre_tasks:
|
||||
- name: Provision Python
|
||||
raw: bash -c "test -e /usr/bin/python || (apt-get -y update && apt-get install -y python)"
|
||||
register: output
|
||||
changed_when: output.stdout
|
||||
- name: Gather facts
|
||||
setup:
|
||||
vars:
|
||||
unattended_autofix_interrupted_dpkg: false
|
||||
unattended_minimal_steps: true
|
||||
unattended_install_on_shutdown: true
|
||||
unattended_automatic_reboot: true
|
||||
unattended_update_days: '{"Sat"}'
|
||||
roles:
|
||||
# Searched for in ../.. (see ansible.cfg)
|
||||
- ansible-role-unattended-upgrades
|
||||
tasks:
|
||||
- name: Idempotency check
|
||||
include_role:
|
||||
name: ansible-role-unattended-upgrades
|
||||
register: idempotency
|
||||
- name: fail when idempotency.changed
|
||||
fail:
|
||||
msg: Role failed idempotency check
|
||||
when: idempotency.changed
|
||||
|
||||
- name: Get apt-config variables
|
||||
command: apt-config dump
|
||||
register: aptconfig
|
||||
changed_when: false
|
||||
- name: Check for registered variables
|
||||
assert:
|
||||
that: item in aptconfig.stdout
|
||||
with_items:
|
||||
- 'APT::Periodic::Unattended-Upgrade "1"'
|
||||
- 'Unattended-Upgrade::AutoFixInterruptedDpkg "false"'
|
||||
- 'Unattended-Upgrade::MinimalSteps "true"'
|
||||
- 'Unattended-Upgrade::InstallOnShutdown "true"'
|
||||
- 'Unattended-Upgrade::Automatic-Reboot "true"'
|
||||
# NOTE: this uses the array syntax, which requires one
|
||||
# top-level record, then one item per line
|
||||
- 'Unattended-Upgrade::Update-Days "";'
|
||||
- 'Unattended-Upgrade::Update-Days:: "Sat";'
|
||||
|
||||
- name: Dry run unattended-upgrades
|
||||
command: /usr/bin/unattended-upgrades --dry-run
|
||||
changed_when: idempotency.changed|bool
|
11
roles/jnv.unattended_upgrades/vars/Debian-wheezy.yml
Normal file
11
roles/jnv.unattended_upgrades/vars/Debian-wheezy.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
|
||||
# This workaround for Debian Wheezy which doesn't support ${distro_codename} macro
|
||||
# See
|
||||
# https://github.com/jnv/ansible-role-unattended-upgrades/issues/19
|
||||
# https://github.com/jnv/ansible-role-unattended-upgrades/pull/20
|
||||
# for details
|
||||
|
||||
__unattended_origins_patterns:
|
||||
- 'origin=Debian,archive=stable,label=Debian-Security'
|
||||
- 'origin=Debian,archive=oldstable,label=Debian-Security'
|
3
roles/jnv.unattended_upgrades/vars/Debian.yml
Normal file
3
roles/jnv.unattended_upgrades/vars/Debian.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
__unattended_origins_patterns:
|
||||
- 'origin=Debian,codename=${distro_codename},label=Debian-Security'
|
3
roles/jnv.unattended_upgrades/vars/Ubuntu.yml
Normal file
3
roles/jnv.unattended_upgrades/vars/Ubuntu.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
__unattended_origins_patterns:
|
||||
- 'origin=Ubuntu,archive=${distro_codename}-security,label=Ubuntu'
|
|
@ -2,7 +2,7 @@
|
|||
become: yes
|
||||
ansible.builtin.package:
|
||||
update_cache: yes
|
||||
cache_valid_time: 300
|
||||
cache_valid_time: 3000
|
||||
|
||||
- name: install common-packages
|
||||
become: yes
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
become: yes
|
||||
ansible.builtin.apt:
|
||||
update_cache: yes
|
||||
cache_valid_time: 30
|
||||
|
||||
- name: updated installed packages
|
||||
become: yes
|
||||
|
|
Loading…
Reference in a new issue