Initial commit of configuration for core.
This commit is contained in:
parent
8e36b0cb0f
commit
65362a2ccb
48 changed files with 3138 additions and 0 deletions
25
etc/conf.d/.gitignore
vendored
Normal file
25
etc/conf.d/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/apache2
|
||||
/consolefont
|
||||
/crond
|
||||
/devfs
|
||||
/dmesg
|
||||
/fsck
|
||||
/hwclock
|
||||
/killprocs
|
||||
/klogd
|
||||
/loadkmap
|
||||
/localmount
|
||||
/modloop
|
||||
/modules
|
||||
/msmtp
|
||||
/mtab
|
||||
/net-online
|
||||
/netmount
|
||||
/ntpd
|
||||
/rdate
|
||||
/seedrng
|
||||
/staticroute
|
||||
/swap
|
||||
/swclock
|
||||
/syslog
|
||||
/watchdog
|
||||
15
etc/conf.d/bootmisc
Normal file
15
etc/conf.d/bootmisc
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# List of /tmp directories we should clean up
|
||||
clean_tmp_dirs="/tmp"
|
||||
|
||||
# Should we wipe the tmp paths completely or just selectively remove known
|
||||
# locks / files / etc... ?
|
||||
wipe_tmp="NO"
|
||||
|
||||
# Write the initial dmesg log into /var/log/dmesg after boot
|
||||
# This may be useful if you need the kernel boot log afterwards
|
||||
log_dmesg="NO"
|
||||
|
||||
# Save the previous dmesg log to dmesg.old
|
||||
# This may be useful if you need to compare the current boot to the
|
||||
# previous one.
|
||||
previous_dmesg=no
|
||||
7
etc/conf.d/node-exporter
Normal file
7
etc/conf.d/node-exporter
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# /etc/conf.d/node-exporter
|
||||
|
||||
# Custom arguments can be specified like:
|
||||
#
|
||||
# ARGS="--web.listen-address=':9100'"
|
||||
|
||||
ARGS="--web.listen-address='5.101.171.215:9100'"
|
||||
11
etc/conf.d/samba
Normal file
11
etc/conf.d/samba
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Add "bgqd" to daemon_list if you want start the background queue daemon from here as well
|
||||
# Add "winbindd" to daemon_list if you want start winbind from here as well
|
||||
#daemon_list="smbd nmbd"
|
||||
# Use "samba" alone for role based samba4 services (eg: ad-dc).
|
||||
daemon_list="samba"
|
||||
|
||||
#smbd_options="-D"
|
||||
#nmbd_options="-D"
|
||||
#winbindd_options="-D"
|
||||
#bgqd_options="-D"
|
||||
#samba_options=""
|
||||
26
etc/conf.d/sshd
Normal file
26
etc/conf.d/sshd
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Configuration for /etc/init.d/sshd
|
||||
|
||||
# Path of sshd_config file.
|
||||
#cfgfile="/etc/ssh/sshd_config"
|
||||
|
||||
# Any random options you want to pass to sshd.
|
||||
# See the sshd(8) manpage for more info.
|
||||
#command_args=""
|
||||
|
||||
# Space-separated list of SSH host key types to generate if they do
|
||||
# not already exist. An empty value means generate all of the default
|
||||
# set of dsa, ecdsa, ed25519, and rsa types.
|
||||
#
|
||||
# Example: "ed25519 rsa".
|
||||
#
|
||||
key_types_to_generate="ecdsa ed25519 rsa"
|
||||
|
||||
# The number of bits to use for a generated ECDSA SSH host key.
|
||||
# Defaults to 256 bits if not set.
|
||||
#
|
||||
#ecdsa_bit_size="256"
|
||||
|
||||
# Number of bits for use for a generated RSA SSH host key.
|
||||
# Defaults to 3072 bits if not set.
|
||||
#
|
||||
#rsa_bit_size="3072"
|
||||
6
etc/conf.d/terraform-http-backend
Normal file
6
etc/conf.d/terraform-http-backend
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
export TF_STORAGE_DIR=/var/lib/terraform-http-backend
|
||||
export TF_AUTH_ENABLED=true
|
||||
export TF_USERNAME=sysadmin
|
||||
export TF_PASSWORD=sunsa
|
||||
export TF_PORT=9200
|
||||
export TF_IP=127.0.0.1
|
||||
Loading…
Add table
Add a link
Reference in a new issue