Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3913056
D102.id245.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D102.id245.diff
View Options
diff --git a/roles/mailserver/systemd-unit/files/lxc-container-mailserver-start b/roles/mailserver/systemd-unit/files/lxc-container-mailserver-start
new file mode 100755
--- /dev/null
+++ b/roles/mailserver/systemd-unit/files/lxc-container-mailserver-start
@@ -0,0 +1,32 @@
+#!/bin/sh
+#Let systemd launch a lxc mail container through /usr/lib/systemd/system/lxc-containers.service
+#Start a lxc container, and create iptable rules
+
+IPTABLES="/usr/sbin/iptables"
+LXC_START="/usr/bin/lxc-start"
+CONTAINER_NAME="mailserver"
+HOST_INTERFACE="ens192"
+DOCKER_INTERFACE="docker0"
+HOST_IP="212.129.32.223"
+CONTAINER_IP="10.0.3.8"
+PORTS="25 110 143 465 587"
+DOCKER_PORTS="25 143 465 587"
+NGINX_PORT="21080"
+
+$LXC_START -n $CONTAINER_NAME -d
+
+#Web rules
+for PORT in $PORTS
+do
+ $IPTABLES -t nat -I PREROUTING -i $HOST_INTERFACE -p TCP -d $HOST_IP/32 --dport $PORT -j DNAT --to-destination $CONTAINER_IP:$PORT
+done
+
+#Need 80 port for main nginx
+$IPTABLES -t nat -I PREROUTING -i $HOST_INTERFACE -p TCP -d $HOST_IP/32 --dport $NGINX_PORT -j DNAT --to-destination $CONTAINER_IP:80
+
+
+#Docker rules
+for PORT in $DOCKER_PORTS
+do
+ $IPTABLES -t nat -I PREROUTING -i $DOCKER_INTERFACE -p TCP -d $HOST_IP/32 --dport $PORT -j DNAT --to-destination $CONTAINER_IP:$PORT
+done
diff --git a/roles/mailserver/systemd-unit/files/lxc-container-mailserver-stop b/roles/mailserver/systemd-unit/files/lxc-container-mailserver-stop
new file mode 100755
--- /dev/null
+++ b/roles/mailserver/systemd-unit/files/lxc-container-mailserver-stop
@@ -0,0 +1,33 @@
+#!/bin/sh
+#Let systemd stop the lxc mail container through /usr/lib/systemd/system/lxc-containers.service
+#Stop the lxc container, and create iptable rules
+
+IPTABLES="/usr/sbin/iptables"
+LXC_STOP="/usr/bin/lxc-stop"
+CONTAINER_NAME="mailserver"
+HOST_INTERFACE="ens192"
+DOCKER_INTERFACE="docker0"
+HOST_IP="212.129.32.223"
+CONTAINER_IP="10.0.3.8"
+PORTS="25 110 143 465 587"
+DOCKER_PORTS="25 143 465 587"
+NGINX_PORT="21080"
+
+#Web rules
+for PORT in $PORTS
+do
+ $IPTABLES -t nat -D PREROUTING -i $HOST_INTERFACE -p TCP -d $HOST_IP/32 --dport $PORT -j DNAT --to-destination $CONTAINER_IP:$PORT
+done
+
+#Need 80 port for main nginx
+$IPTABLES -t nat -D PREROUTING -i $HOST_INTERFACE -p TCP -d $HOST_IP/32 --dport $NGINX_PORT -j DNAT --to-destination $CONTAINER_IP:80
+
+
+#Docker rules
+for PORT in $DOCKER_PORTS
+do
+ $IPTABLES -t nat -D PREROUTING -i $DOCKER_INTERFACE -p TCP -d $HOST_IP/32 --dport $PORT -j DNAT --to-destination $CONTAINER_IP:$PORT
+done
+
+$LXC_STOP -n $CONTAINER_NAME
+
diff --git a/roles/mailserver/systemd-unit/files/lxc-container-mailserver.service b/roles/mailserver/systemd-unit/files/lxc-container-mailserver.service
new file mode 100755
--- /dev/null
+++ b/roles/mailserver/systemd-unit/files/lxc-container-mailserver.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Lxc mailserver container
+
+[Service]
+Type=simple
+RemainAfterExit=yes
+ExecStart=/usr/lib/systemd/system/lxc-container-mailserver-start
+ExecStop=/usr/lib/systemd/system/lxc-container-mailserver-stop
+
+[Install]
+WantedBy=multi-user.target
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 20, 08:07 (20 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2307834
Default Alt Text
D102.id245.diff (3 KB)
Attached To
Mode
D102: Create a systemd unit and scripts in order to automatize a lxc mailserver container launch
Attached
Detach File
Event Timeline
Log In to Comment