Hyperling
3109891a7e
* Add another requirement for Debian to download key. * Add setup script instead of using scm.hyperling.com. * Fix setup permissions. * Starting effort to remove share drives from script. Downsizing homelab. * Remove files which are no longer useful without mounts. * Allow initializing on alternate branches. * Fix Lynis and NMap log locations. * Remove deleted files from main. * Fix nmap filename. * Remove _name from report variables.
27 lines
555 B
YAML
27 lines
555 B
YAML
---
|
|
# Definitions for service management.
|
|
|
|
- name: General | Facts | Service | All
|
|
set_fact:
|
|
cups: cups
|
|
cups_pattern: cupsd
|
|
cups_browse: cups-browsed
|
|
cups_browse_pattern: cups-browsed
|
|
sshd: sshd
|
|
sshd_pattern: sshd
|
|
sshd_config: /etc/ssh/sshd_config
|
|
crond: cron
|
|
crond_pattern: cron
|
|
|
|
|
|
#- name: General | Facts | Service | Linux
|
|
# set_fact:
|
|
# when: ansible_system == "Linux"
|
|
|
|
|
|
- name: General | Facts | Service | Linux
|
|
set_fact:
|
|
crond: cronie
|
|
crond_pattern: cronie
|
|
when: ansible_distribution == "Archlinux"
|