Upgraded pns.usr.f29 to pns.usr.f30.
authorZoltán Felleg <zoltan.felleg@userrendszerhaz.hu>
Fri, 17 May 2019 08:34:49 +0000 (10:34 +0200)
committerZoltán Felleg <zoltan.felleg@userrendszerhaz.hu>
Fri, 17 May 2019 08:34:49 +0000 (10:34 +0200)
28 files changed:
scripts/crt.sh
scripts/dnf.conf.fedora
sources/cvm.usr.f30/etc/lxc.conf [new file with mode: 0644]
sources/pns.usr.f29/envvars [deleted file]
sources/pns.usr.f30/config [moved from sources/pns.usr.f29/config with 100% similarity]
sources/pns.usr.f30/envvars [new file with mode: 0644]
sources/pns.usr.f30/firstboot/01_setupnetworking.sh [moved from sources/pns.usr.f29/firstboot/01_setupnetworking.sh with 100% similarity]
sources/pns.usr.f30/firstboot/02_settimezone.sh [moved from sources/pns.usr.f29/firstboot/02_settimezone.sh with 100% similarity]
sources/pns.usr.f30/firstboot/03_setupldap.sh [moved from sources/pns.usr.f29/firstboot/03_setupldap.sh with 100% similarity]
sources/pns.usr.f30/firstboot/99_cleanup.sh [moved from sources/pns.usr.f29/firstboot/99_cleanup.sh with 100% similarity]
sources/pns.usr.f30/postinstall/01_setownership.sh [moved from sources/pns.usr.f29/postinstall/01_setownership.sh with 100% similarity]
sources/pns.usr.f30/postinstall/02_setpermissions.sh [moved from sources/pns.usr.f29/postinstall/02_setpermissions.sh with 100% similarity]
sources/pns.usr.f30/postinstall/03_installfiles.sh [moved from sources/pns.usr.f29/postinstall/03_installfiles.sh with 100% similarity]
sources/pns.usr.f30/postinstall/10_setupservices.sh [moved from sources/pns.usr.f29/postinstall/10_setupservices.sh with 100% similarity]
sources/pns.usr.f30/postinstall/99_cleanup.sh [moved from sources/pns.usr.f29/postinstall/99_cleanup.sh with 100% similarity]
sources/pns.usr.f30/postinstall/install/etc/hosts [moved from sources/pns.usr.f29/postinstall/install/etc/hosts with 100% similarity]
sources/pns.usr.f30/postinstall/install/etc/named.conf [moved from sources/pns.usr.f29/postinstall/install/etc/named.conf with 100% similarity]
sources/pns.usr.f30/postinstall/install/etc/sysctl.d/01-ipv6.conf [moved from sources/pns.usr.f29/postinstall/install/etc/sysctl.d/01-ipv6.conf with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/173.168.192.in-addr.arpa.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/173.168.192.in-addr.arpa.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/228.10.in-addr.arpa.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/228.10.in-addr.arpa.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/42.168.192.in-addr.arpa.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/42.168.192.in-addr.arpa.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/43.168.192.in-addr.arpa.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/43.168.192.in-addr.arpa.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/in.user.hu.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/in.user.hu.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/pm.user.hu.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/pm.user.hu.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/sr.user.hu.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/sr.user.hu.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/useribm.hu.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/useribm.hu.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/userrendszerhaz.hu.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/userrendszerhaz.hu.zone with 100% similarity]
sources/pns.usr.f30/postinstall/install/var/named/usr.user.hu.zone [moved from sources/pns.usr.f29/postinstall/install/var/named/usr.user.hu.zone with 100% similarity]

index e399d96d942d7d04450ac063f96aa3d1434871c7..1ed0c221e794d10b8df5110e27228d0067b51327 100755 (executable)
@@ -13,14 +13,14 @@ CONTAINER_NAME=$(basename $1)
 CONTAINER_OS=$(echo $CONTAINER_NAME | sed 's/^.*\.\([^\.]*\)$/\1/')
 CONTAINER_BASENAME=$(basename $CONTAINER_NAME .$CONTAINER_OS)
 case "$CONTAINER_OS" in
+    "f30")
+        DNF_RELEASEVER=30
+        PREV_CONTAINER_OS="f29"
+        ;;
     "f29")
         DNF_RELEASEVER=29
         PREV_CONTAINER_OS="f28"
         ;;
-    "f28")
-        DNF_RELEASEVER=28
-        PREV_CONTAINER_OS="f27"
-        ;;
     *)
         echo "Unknown operating system: $CONTAINER_OS" >&2
         exit 1
index 0f8fc9cd2052ea4635b3f1b08210c56c995829a3..328cc4e971704a0eb7c477b267f507d42457834e 100644 (file)
@@ -7,4 +7,3 @@ gpgcheck=0
 name=Fedora $releasever - $basearch - Updates
 baseurl=http://store.usr.user.hu/linux/fedora/updates/$releasever/Everything/$basearch/
 gpgcheck=0
-excludepkgs=dbus*
diff --git a/sources/cvm.usr.f30/etc/lxc.conf b/sources/cvm.usr.f30/etc/lxc.conf
new file mode 100644 (file)
index 0000000..48f7ddf
--- /dev/null
@@ -0,0 +1 @@
+lxc.lxcpath = /lxc/containers
diff --git a/sources/pns.usr.f29/envvars b/sources/pns.usr.f29/envvars
deleted file mode 100644 (file)
index 225fcb0..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#BASE_PACKAGES="NetworkManager initscripts openssh-server openssh-clients openssh-ldap rootfiles rsyslog sudo tar vim-minimal"
-#SPEC_PACKAGES="authselect bind bind-utils openldap-clients nss-pam-ldapd pam_ssh passwd"
-BASE_PACKAGES="NetworkManager initscripts rootfiles rsyslog tar"
-SPEC_PACKAGES="bind bind-utils"
diff --git a/sources/pns.usr.f30/envvars b/sources/pns.usr.f30/envvars
new file mode 100644 (file)
index 0000000..d338122
--- /dev/null
@@ -0,0 +1,2 @@
+BASE_PACKAGES="NetworkManager initscripts rootfiles rsyslog tar"
+SPEC_PACKAGES="bind bind-utils"