nextcloud: removed (install at lamp appliance)
This commit is contained in:
parent
6c7a8e2fb7
commit
ed44a4e8f0
|
@ -1,22 +0,0 @@
|
||||||
# Beispiel für feste IP-Adreß-Konfiguration:
|
|
||||||
# Anpassen und als 00-eth0.network nach /etc/systemd/network verschieben
|
|
||||||
# (s. "man systemd.network", "man systemd-resolved")
|
|
||||||
#
|
|
||||||
# NICHT VERGESSEN: entsprechende Einträge in /etc/hosts hinzufügen
|
|
||||||
# <IPv4> <FQDN> <Hostname>
|
|
||||||
# <IPv6> <FQDN> <Hostname>
|
|
||||||
|
|
||||||
[Match]
|
|
||||||
Name=eth0
|
|
||||||
|
|
||||||
[Network]
|
|
||||||
Description=1. Netzwerk-Port
|
|
||||||
Address=192.168.1.2/24
|
|
||||||
Address=fdb5:78b:64cc:0:f8c0::2/64
|
|
||||||
Gateway=192.168.1.1
|
|
||||||
Gateway=fdb5:78b:64cc:0:f8c0::1
|
|
||||||
DNS=192.168.1.3
|
|
||||||
DNS=fdb5:78b:64cc:0:f8c0::3
|
|
||||||
NTP=192.168.1.4
|
|
||||||
NTP=fdb5:78b:64cc:0:f8c0::4
|
|
||||||
Domains=privacyidea.de
|
|
|
@ -1,50 +0,0 @@
|
||||||
preinstall:
|
|
||||||
# switch to hardened, build hardened toolchain, rebuild everything
|
|
||||||
mkdir -p $(CHROOT)/etc/portage/profile
|
|
||||||
echo "-hardened" >> $(CHROOT)/etc/portage/profile/use.mask
|
|
||||||
$(inroot) $(EMERGE) $(USEPKG) --oneshot gcc
|
|
||||||
$(inroot) $(EMERGE) $(USEPKG) --oneshot binutils virtual/libc
|
|
||||||
-$(gcc_config)
|
|
||||||
$(inroot) $(EMERGE) $(USEPKG) --emptytree @world
|
|
||||||
$(inroot) bash -c 'yes YES | etc-update --automode -9'
|
|
||||||
|
|
||||||
# Unitas-Portage-Overlay einbinden
|
|
||||||
$(inroot) $(EMERGE) -n $(USEPKG) app-portage/layman
|
|
||||||
sed -i 's/check_official : Yes/check_official : No/' $(CHROOT)/etc/layman/layman.cfg
|
|
||||||
wget -P $(CHROOT)/etc/layman/overlays http://dev.unitas-network.de/raw/Gentoo/Unitas.git/master/unitas-overlays.xml
|
|
||||||
$(inroot) layman -l | grep -q unitas || $(inroot) layman -La unitas
|
|
||||||
|
|
||||||
postinstall: timesyncd.conf installgrub.sh grub.shell firstboot.start
|
|
||||||
# Konfigurationen anpassen
|
|
||||||
cp timesyncd.conf $(CHROOT)/etc/systemd/timesyncd.conf
|
|
||||||
cp installgrub.sh $(CHROOT)/installgrub.sh
|
|
||||||
cp grub.shell $(CHROOT)/grub.shell
|
|
||||||
cp firstboot.start $(CHROOT)/etc/local.d/firstboot.start
|
|
||||||
touch $(CHROOT)/firstboot
|
|
||||||
sed -i 's/# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' $(CHROOT)/etc/sudoers
|
|
||||||
$(inroot) useradd -m -G users,wheel -s /bin/bash admin
|
|
||||||
$(inroot) passwd -d admin; $(inroot) passwd -e admin
|
|
||||||
$(inroot) systemctl enable screen@adm.service
|
|
||||||
|
|
||||||
# Beispiel feste IP-Adresse
|
|
||||||
cp 00-eth0.network $(CHROOT)/00-eth0.network.example
|
|
||||||
|
|
||||||
# MariaDB-Konfiguration
|
|
||||||
cp mariadb/my.cnf $(CHROOT)/etc/mysql/my.cnf
|
|
||||||
cp mariadb/my.cnf.root $(CHROOT)/root/.my.cnf
|
|
||||||
chmod 0600 $(CHROOT)/root/.my.cnf
|
|
||||||
rm -rf $(CHROOT)/var/lib/mysql/*
|
|
||||||
$(inroot) bash -c 'yes gentoo | emerge --config dev-db/mariadb'
|
|
||||||
|
|
||||||
# Apache-/PHP-Konfiguration
|
|
||||||
sed -i 's:APACHE2_OPTS=\":APACHE2_OPTS=\"-D PHP :' $(CHROOT)/etc/conf.d/apache2
|
|
||||||
find $(CHROOT)/etc/php/apache2-*/ -iname php.ini -print | xargs \sed -i \
|
|
||||||
-e 's:.*date.timezone =.*:date.timezone = Europe/Berlin:' \
|
|
||||||
-e 's:.*max_execution_time =.*:max_execution_time = 3600:' \
|
|
||||||
-e 's:.*max_input_time =.*:max_input_time = 3600:' \
|
|
||||||
-e 's:.*post_max_size =.*:post_max_size = 8G:' \
|
|
||||||
-e 's:.*upload_max_filesize =*.:upload_max_filesize = 8G:' \
|
|
||||||
-e 's:.*always_populate_raw_post_data =.*:always_populate_raw_post_data = -1:'
|
|
||||||
$(inroot) systemctl enable apache2
|
|
||||||
|
|
||||||
clean:
|
|
|
@ -1,9 +0,0 @@
|
||||||
Erstkonfiguration
|
|
||||||
=================
|
|
||||||
|
|
||||||
- für variable Daten (MySQL/MariaDB, Konfiguration) muß eine mit ext4 formatierte Datenpartition mit dem Label "DATA" vorhanden sein. Diese wird nach /DATA gemountet.
|
|
||||||
- feste IP-Adresse und /etc/hosts konfigurieren
|
|
||||||
- evtl. Apache-Zertifikat neu erzeugen
|
|
||||||
- unter VMware evtl. open-vm-tools aktivieren
|
|
||||||
- Evt. /etc/mysql/my.cnf anpassen (~80% vom RAM): innodb_buffer_pool_size = 2G
|
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# base settings
|
|
||||||
set -e
|
|
||||||
|
|
||||||
[ -e /firstboot ] || exit 0
|
|
||||||
|
|
||||||
echo 'Setting defaults...'
|
|
||||||
localectl --no-convert set-keymap de-latin1-nodeadkeys
|
|
||||||
|
|
||||||
echo 'Activate services...'
|
|
||||||
timedatectl set-ntp true
|
|
||||||
|
|
||||||
echo 'Setting hardened...'
|
|
||||||
paxctl-ng -m /usr/bin/python2.7
|
|
||||||
|
|
||||||
|
|
||||||
# variables
|
|
||||||
LABEL="DATA"
|
|
||||||
DATABASE_PASS="Di1sgMySQLPwd."
|
|
||||||
|
|
||||||
# Data partition
|
|
||||||
echo 'Mount data partition...'
|
|
||||||
mkdir -p /$LABEL
|
|
||||||
if [ ! -L "/dev/disk/by-label/$LABEL" ]; then
|
|
||||||
echo 'ERROR: Data partition not found!'
|
|
||||||
echo "Please create a data partition with ext4 filesystem and label \"$LABEL\":"
|
|
||||||
echo "# cfdisk /dev/<disk> (use GPT label, create linux partition)"
|
|
||||||
echo "# mkfs.ext4 -L $LABEL /dev/<partition>"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if ! grep -Fq "LABEL=$LABEL" /etc/fstab; then
|
|
||||||
echo "LABEL=$LABEL /$LABEL ext4 noatime 0 1" >> /etc/fstab
|
|
||||||
fi
|
|
||||||
mount -a
|
|
||||||
if ! mount | grep /$LABEL > /dev/null; then
|
|
||||||
echo "ERROR: Could not mount data partition!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -d "/$LABEL/var/lib/mysql/mysql" ]; then
|
|
||||||
echo 'Initialize MariaDB...'
|
|
||||||
systemctl stop mariadb
|
|
||||||
mkdir -p /$LABEL/var/lib/mysql
|
|
||||||
rm -rf /$LABEL/var/lib/mysql/*
|
|
||||||
cp -a /var/lib/mysql/. /$LABEL/var/lib/mysql
|
|
||||||
sed -i "s:^datadir.*:datadir = /$LABEL/var/lib/mysql:" /etc/mysql/my.cnf
|
|
||||||
systemctl start mariadb
|
|
||||||
else
|
|
||||||
echo 'Start MariaDB...'
|
|
||||||
sed -i "s:^datadir.*:datadir = /$LABEL/var/lib/mysql:" /etc/mysql/my.cnf
|
|
||||||
systemctl start mariadb
|
|
||||||
fi
|
|
||||||
echo 'Enable database...'
|
|
||||||
systemctl enable mariadb
|
|
||||||
|
|
||||||
rm /firstboot
|
|
|
@ -1,6 +0,0 @@
|
||||||
root (hd0,0)
|
|
||||||
setup (hd0)
|
|
||||||
root (hd1,0)
|
|
||||||
setup (hd1)
|
|
||||||
quit
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
mount -t proc proc /mnt/gentoo/proc
|
|
||||||
mount --rbind /sys /mnt/gentoo/sys
|
|
||||||
mount --rbind /dev /mnt/gentoo/dev
|
|
||||||
|
|
||||||
chroot /mnt/gentoo cat /grub.shell | /sbin/grub --no-floppy --batch
|
|
||||||
|
|
||||||
umount /mnt/gentoo/proc
|
|
||||||
umount /mnt/gentoo/sys
|
|
||||||
umount /mnt/gentoo/dev
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,12 +0,0 @@
|
||||||
CFLAGS="-O2 -pipe"
|
|
||||||
CXXFLAGS="-O2 -pipe"
|
|
||||||
USE="hardened justify pax_kernel pie ssp urandom xattr xtpax -fortran -jit -orc -pch -pic -prelink -profile -tcc"
|
|
||||||
MAKEOPTS="-j5"
|
|
||||||
PYTHON_TARGETS="python2_7"
|
|
||||||
|
|
||||||
# LAMP
|
|
||||||
APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_core authn_dbm authn_file authz_core authz_dbm
|
|
||||||
authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock
|
|
||||||
deflate dir env expires ext_filter file_cache filter headers include info log_config logio mime
|
|
||||||
mime_magic negotiation rewrite setenvif socache_shmcb speling status unique_id unixd userdir
|
|
||||||
usertrack vhost_alias"
|
|
|
@ -1,144 +0,0 @@
|
||||||
# /etc/mysql/my.cnf: The global mysql configuration file.
|
|
||||||
# $Id$
|
|
||||||
|
|
||||||
# The following options will be passed to all MySQL clients
|
|
||||||
[client]
|
|
||||||
#password = your_password
|
|
||||||
port = 3306
|
|
||||||
socket = /var/run/mysqld/mysqld.sock
|
|
||||||
|
|
||||||
[mysql]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
default-character-set=utf8
|
|
||||||
|
|
||||||
[mysqladmin]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
default-character-set=utf8
|
|
||||||
|
|
||||||
[mysqlcheck]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
default-character-set=utf8
|
|
||||||
|
|
||||||
[mysqldump]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
default-character-set=utf8
|
|
||||||
|
|
||||||
[mysqlimport]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
default-character-set=utf8
|
|
||||||
|
|
||||||
[mysqlshow]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
default-character-set=utf8
|
|
||||||
|
|
||||||
[myisamchk]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
|
|
||||||
[myisampack]
|
|
||||||
character-sets-dir=/usr/share/mysql/charsets
|
|
||||||
|
|
||||||
# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations
|
|
||||||
[mysqld]
|
|
||||||
character-set-server = utf8
|
|
||||||
user = mysql
|
|
||||||
port = 3306
|
|
||||||
socket = /var/run/mysqld/mysqld.sock
|
|
||||||
pid-file = /var/run/mysqld/mysqld.pid
|
|
||||||
log-error = /var/log/mysql/mysqld.err
|
|
||||||
basedir = /usr
|
|
||||||
datadir = /var/lib/mysql
|
|
||||||
skip-external-locking
|
|
||||||
key_buffer_size = 16M
|
|
||||||
max_allowed_packet = 4M
|
|
||||||
table_open_cache = 400
|
|
||||||
sort_buffer_size = 512K
|
|
||||||
net_buffer_length = 16K
|
|
||||||
read_buffer_size = 256K
|
|
||||||
read_rnd_buffer_size = 512K
|
|
||||||
myisam_sort_buffer_size = 8M
|
|
||||||
lc_messages_dir = /usr/share/mysql
|
|
||||||
#Set this to your desired error message language
|
|
||||||
lc_messages = en_US
|
|
||||||
|
|
||||||
# security:
|
|
||||||
# using "localhost" in connects uses sockets by default
|
|
||||||
# skip-networking
|
|
||||||
bind-address = 127.0.0.1
|
|
||||||
|
|
||||||
##log-bin
|
|
||||||
server-id = 1
|
|
||||||
|
|
||||||
# point the following paths to different dedicated disks
|
|
||||||
tmpdir = /tmp/
|
|
||||||
#log-update = /path-to-dedicated-directory/hostname
|
|
||||||
|
|
||||||
# you need the debug USE flag enabled to use the following directives,
|
|
||||||
# if needed, uncomment them, start the server and issue
|
|
||||||
# #tail -f /tmp/mysqld.sql /tmp/mysqld.trace
|
|
||||||
# this will show you *exactly* what's happening in your server ;)
|
|
||||||
|
|
||||||
#log = /tmp/mysqld.sql
|
|
||||||
#gdb
|
|
||||||
#debug = d:t:i:o,/tmp/mysqld.trace
|
|
||||||
#one-thread
|
|
||||||
|
|
||||||
# the rest of the innodb config follows:
|
|
||||||
# don't eat too much memory, we're trying to be safe on 64Mb boxes
|
|
||||||
# you might want to bump this up a bit on boxes with more RAM
|
|
||||||
innodb_buffer_pool_size = 128M
|
|
||||||
#
|
|
||||||
# i'd like to use /var/lib/mysql/innodb, but that is seen as a database :-(
|
|
||||||
# and upstream wants things to be under /var/lib/mysql/, so that's the route
|
|
||||||
# we have to take for the moment
|
|
||||||
#innodb_data_home_dir = /var/lib/mysql/
|
|
||||||
#innodb_log_arch_dir = /var/lib/mysql/
|
|
||||||
#innodb_log_group_home_dir = /var/lib/mysql/
|
|
||||||
# you may wish to change this size to be more suitable for your system
|
|
||||||
# the max is there to avoid run-away growth on your machine
|
|
||||||
innodb_data_file_path = ibdata1:10M:autoextend:max:128M
|
|
||||||
# we keep this at around 25% of of innodb_buffer_pool_size
|
|
||||||
# sensible values range from 1MB to (1/innodb_log_files_in_group*innodb_buffer_pool_size)
|
|
||||||
innodb_log_file_size = 48M
|
|
||||||
# this is the default, increase it if you have very large transactions going on
|
|
||||||
innodb_log_buffer_size = 8M
|
|
||||||
# this is the default and won't hurt you
|
|
||||||
# you shouldn't need to tweak it
|
|
||||||
innodb_log_files_in_group=2
|
|
||||||
# see the innodb config docs, the other options are not always safe
|
|
||||||
innodb_flush_log_at_trx_commit = 1
|
|
||||||
innodb_lock_wait_timeout = 50
|
|
||||||
innodb_file_per_table
|
|
||||||
|
|
||||||
# Uncomment this to get FEDERATED engine support
|
|
||||||
#plugin-load=federated=ha_federated.so
|
|
||||||
loose-federated
|
|
||||||
|
|
||||||
# Nextcloud-Empfehlung
|
|
||||||
log-basename=master
|
|
||||||
log-bin
|
|
||||||
binlog-format=mixed
|
|
||||||
|
|
||||||
[mysqldump]
|
|
||||||
quick
|
|
||||||
max_allowed_packet = 16M
|
|
||||||
|
|
||||||
[mysql]
|
|
||||||
# uncomment the next directive if you are not familiar with SQL
|
|
||||||
#safe-updates
|
|
||||||
|
|
||||||
[isamchk]
|
|
||||||
key_buffer_size = 20M
|
|
||||||
sort_buffer_size = 20M
|
|
||||||
read_buffer = 2M
|
|
||||||
write_buffer = 2M
|
|
||||||
|
|
||||||
[myisamchk]
|
|
||||||
key_buffer_size = 20M
|
|
||||||
sort_buffer_size = 20M
|
|
||||||
read_buffer_size = 2M
|
|
||||||
write_buffer_size = 2M
|
|
||||||
|
|
||||||
[mysqlhotcopy]
|
|
||||||
interactive-timeout
|
|
||||||
|
|
||||||
[mariadb]
|
|
|
@ -1,7 +0,0 @@
|
||||||
[mysqladmin]
|
|
||||||
user = root
|
|
||||||
password = gentoo
|
|
||||||
|
|
||||||
[mysql]
|
|
||||||
user = root
|
|
||||||
password = gentoo
|
|
|
@ -1,18 +0,0 @@
|
||||||
##HOSTNAME = $(APPLIANCE)
|
|
||||||
##TIMEZONE = UTC
|
|
||||||
##DISK_SIZE = 6.0G
|
|
||||||
##SWAP_SIZE = 30
|
|
||||||
##SWAP_FILE = $(CHROOT)/.swap
|
|
||||||
##ARCH = amd64-hardened
|
|
||||||
##MAKEOPTS = -j10 -l10
|
|
||||||
##PRUNE_CRITICAL = NO
|
|
||||||
##CHANGE_PASSWORD = YES
|
|
||||||
##HEADLESS = NO
|
|
||||||
##SOFTWARE = 1
|
|
||||||
##PKGLIST = 0
|
|
||||||
##RSYNC_MIRROR = rsync://rsync15.de.gentoo.org/gentoo/
|
|
||||||
KERNEL_PKG = hardened-sources
|
|
||||||
KERNEL_CONFIG = appliances/$(APPLIANCE)/kernel.config
|
|
||||||
ENABLE_SSHD = YES
|
|
||||||
TIMEZONE=Europe/Berlin
|
|
||||||
LOCALE=de_DE.utf8
|
|
|
@ -1,77 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<Envelope ovf:version="1.0" xml:lang="en-US" xmlns="http://schemas.dmtf.org/ovf/envelope/1" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<References>
|
|
||||||
<File ovf:href="nextcloud.vmdk" ovf:id="file1" ovf:size="2051128832"/>
|
|
||||||
</References>
|
|
||||||
<DiskSection>
|
|
||||||
<Info>List of the virtual disks used in the package</Info>
|
|
||||||
<Disk ovf:capacity="40" ovf:capacityAllocationUnits="byte * 2^30" ovf:diskId="vmdisk1" ovf:fileRef="file1" ovf:format="http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized" ovf:populatedSize="4813225984"/>
|
|
||||||
</DiskSection>
|
|
||||||
<NetworkSection>
|
|
||||||
<Info>Logical networks used in the package</Info>
|
|
||||||
<Network ovf:name="NAT">
|
|
||||||
<Description>Logical network used by this appliance.</Description>
|
|
||||||
</Network>
|
|
||||||
</NetworkSection>
|
|
||||||
<VirtualSystem ovf:id="PacketFence-ZEN">
|
|
||||||
<Info>A virtual machine</Info>
|
|
||||||
<OperatingSystemSection ovf:id="101">
|
|
||||||
<Info>The kind of installed guest operating system</Info>
|
|
||||||
<Description>RedHat_64</Description>
|
|
||||||
</OperatingSystemSection>
|
|
||||||
<VirtualHardwareSection>
|
|
||||||
<Info>Virtual hardware requirements for a virtual machine</Info>
|
|
||||||
<System>
|
|
||||||
<vssd:ElementName>Virtual Hardware Family</vssd:ElementName>
|
|
||||||
<vssd:InstanceID>0</vssd:InstanceID>
|
|
||||||
<vssd:VirtualSystemIdentifier>PacketFence-ZEN</vssd:VirtualSystemIdentifier>
|
|
||||||
<vssd:VirtualSystemType>vmx-7</vssd:VirtualSystemType>
|
|
||||||
</System>
|
|
||||||
<Item>
|
|
||||||
<rasd:Caption>4 virtual CPU</rasd:Caption>
|
|
||||||
<rasd:Description>Number of virtual CPUs</rasd:Description>
|
|
||||||
<rasd:ElementName>4 virtual CPU</rasd:ElementName>
|
|
||||||
<rasd:InstanceID>1</rasd:InstanceID>
|
|
||||||
<rasd:ResourceType>3</rasd:ResourceType>
|
|
||||||
<rasd:VirtualQuantity>4</rasd:VirtualQuantity>
|
|
||||||
</Item>
|
|
||||||
<Item>
|
|
||||||
<rasd:AllocationUnits>MegaBytes</rasd:AllocationUnits>
|
|
||||||
<rasd:Caption>8096 MB of memory</rasd:Caption>
|
|
||||||
<rasd:Description>Memory Size</rasd:Description>
|
|
||||||
<rasd:ElementName>8096 MB of memory</rasd:ElementName>
|
|
||||||
<rasd:InstanceID>2</rasd:InstanceID>
|
|
||||||
<rasd:ResourceType>4</rasd:ResourceType>
|
|
||||||
<rasd:VirtualQuantity>8096</rasd:VirtualQuantity>
|
|
||||||
</Item>
|
|
||||||
<Item>
|
|
||||||
<rasd:Address>0</rasd:Address>
|
|
||||||
<rasd:Caption>SCSIController</rasd:Caption>
|
|
||||||
<rasd:Description>SCSI Controller</rasd:Description>
|
|
||||||
<rasd:ElementName>SCSI Controller 0</rasd:ElementName>
|
|
||||||
<rasd:InstanceID>3</rasd:InstanceID>
|
|
||||||
<rasd:ResourceSubType>lsilogic</rasd:ResourceSubType>
|
|
||||||
<rasd:ResourceType>6</rasd:ResourceType>
|
|
||||||
</Item>
|
|
||||||
<Item>
|
|
||||||
<rasd:AddressOnParent>0</rasd:AddressOnParent>
|
|
||||||
<rasd:Caption>disk1</rasd:Caption>
|
|
||||||
<rasd:Description>Disk Image</rasd:Description>
|
|
||||||
<rasd:ElementName>disk1</rasd:ElementName>
|
|
||||||
<rasd:HostResource>/disk/vmdisk1</rasd:HostResource>
|
|
||||||
<rasd:InstanceID>4</rasd:InstanceID>
|
|
||||||
<rasd:Parent>3</rasd:Parent>
|
|
||||||
<rasd:ResourceType>17</rasd:ResourceType>
|
|
||||||
</Item>
|
|
||||||
<Item ovf:required="false">
|
|
||||||
<rasd:AutomaticAllocation>true</rasd:AutomaticAllocation>
|
|
||||||
<rasd:Caption>Ethernet adapter on 'NAT'</rasd:Caption>
|
|
||||||
<rasd:Connection>NAT</rasd:Connection>
|
|
||||||
<rasd:ElementName>Ethernet adapter on 'NAT'</rasd:ElementName>
|
|
||||||
<rasd:InstanceID>5</rasd:InstanceID>
|
|
||||||
<rasd:ResourceSubType>E1000</rasd:ResourceSubType>
|
|
||||||
<rasd:ResourceType>10</rasd:ResourceType>
|
|
||||||
</Item>
|
|
||||||
</VirtualHardwareSection>
|
|
||||||
</VirtualSystem>
|
|
||||||
</Envelope>
|
|
|
@ -1,19 +0,0 @@
|
||||||
# Grundsystem
|
|
||||||
app-admin/paxtest ~amd64 ~x86
|
|
||||||
app-emulation/open-vm-tools ~amd64 ~x86
|
|
||||||
sys-auth/pam_ssh_agent_auth ~amd64 ~x86
|
|
||||||
sys-kernel/gentoo-sources ~amd64 ~x86
|
|
||||||
sys-kernel/hardened-sources ~amd64 ~x86
|
|
||||||
|
|
||||||
# LAMP
|
|
||||||
dev-db/mariadb ~amd64 ~x86
|
|
||||||
www-apps/nextcloud ~amd64 ~x86
|
|
||||||
|
|
||||||
# LetsEncrypt
|
|
||||||
app-crypt/acme ~amd64 ~x86
|
|
||||||
app-crypt/certbot ~amd64 ~x86
|
|
||||||
app-crypt/certbot-apache ~amd64 ~x86
|
|
||||||
dev-python/zope-component ~amd64 ~x86
|
|
||||||
dev-python/parsedatetime ~amd64 ~x86
|
|
||||||
dev-python/pyrfc3339 ~amd64 ~x86
|
|
||||||
dev-python/python-augeas ~amd64 ~x86
|
|
|
@ -1,25 +0,0 @@
|
||||||
app-admin/sudo -sendmail
|
|
||||||
app-editors/nano ncurses
|
|
||||||
app-emulation/open-vm-tools pic -modules
|
|
||||||
app-misc/mc -slang
|
|
||||||
dev-lang/python ssl threads xml
|
|
||||||
dev-libs/libpcre cxx
|
|
||||||
dev-util/pkgconfig internal-glib
|
|
||||||
net-misc/openssh ssl
|
|
||||||
net-misc/wget ssl
|
|
||||||
sys-apps/hwids udev
|
|
||||||
sys-apps/kmod tools
|
|
||||||
sys-apps/net-tools hostname
|
|
||||||
sys-apps/portage ipc
|
|
||||||
sys-auth/pambase nullok sha512
|
|
||||||
sys-devel/gcc cxx nptl
|
|
||||||
sys-kernel/gentoo-sources symlink
|
|
||||||
sys-kernel/hardened-sources symlink
|
|
||||||
|
|
||||||
# Monitoring
|
|
||||||
net-analyzer/zabbix agent
|
|
||||||
|
|
||||||
# LAMP
|
|
||||||
app-eselect/eselect-php apache2 fpm
|
|
||||||
dev-lang/php apache2 bcmath curl gd ldap ldap-sasl mysql mysqli pdo sockets sqlite sysvipc truetype xmlreader xmlwriter zip
|
|
||||||
www-apps/nextcloud mysql
|
|
|
@ -1,12 +0,0 @@
|
||||||
# This file is part of systemd.
|
|
||||||
#
|
|
||||||
# systemd is free software; you can redistribute it and/or modify it
|
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2.1 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# See timesyncd.conf(5) for details.
|
|
||||||
|
|
||||||
[Time]
|
|
||||||
NTP=0.de.pool.ntp.org 1.de.pool.ntp.org 2.de.pool.ntp.org 3.de.pool.ntp.org
|
|
||||||
FallbackNTP=0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org
|
|
|
@ -1,17 +0,0 @@
|
||||||
app-admin/logrotate
|
|
||||||
app-admin/paxtest
|
|
||||||
app-admin/sudo
|
|
||||||
app-emulation/open-vm-tools
|
|
||||||
app-misc/mc
|
|
||||||
app-misc/screenservice
|
|
||||||
net-analyzer/zabbix
|
|
||||||
sys-apps/elfix
|
|
||||||
sys-apps/gradm
|
|
||||||
sys-apps/paxctl
|
|
||||||
sys-auth/pam_ssh_agent_auth
|
|
||||||
sys-power/acpid
|
|
||||||
app-crypt/certbot-apache
|
|
||||||
dev-db/mariadb
|
|
||||||
dev-db/phpmyadmin
|
|
||||||
www-apps/nextcloud
|
|
||||||
www-servers/apache
|
|
Reference in New Issue