@@ -71,6 +71,10 if [ "$BUILD_KERNEL" = true ] ; then | |||
|
71 | 71 | # Load default raspberry kernel configuration |
|
72 | 72 | make -C "${KERNEL_DIR}" ARCH="${KERNEL_ARCH}" CROSS_COMPILE="${CROSS_COMPILE}" "${KERNEL_DEFCONFIG}" |
|
73 | 73 | |
|
74 | if [ ! -z "$KERNELUSR_CONFIG" ] ; then | |
|
75 | cp $KERNELUSR_CONFIG ${KERNEL_DIR}/.config | |
|
76 | fi | |
|
77 | ||
|
74 | 78 | # Start menu-driven kernel configuration (interactive) |
|
75 | 79 | if [ "$KERNEL_MENUCONFIG" = true ] ; then |
|
76 | 80 | make -C "${KERNEL_DIR}" ARCH="${KERNEL_ARCH}" CROSS_COMPILE="${CROSS_COMPILE}" menuconfig |
@@ -11,4 +11,13 | |||
|
11 | 11 | # |
|
12 | 12 | # By default this script does nothing. |
|
13 | 13 | |
|
14 | if [ ! -e /var/cfengine/policy_server.dat ] ; then | |
|
15 | while ! ping -c 1 -q zcu.cz; do sleep 2s; done | |
|
16 | rm -f /var/cfengine/ppkeys/* | |
|
17 | /var/cfengine/bin/cf-key | |
|
18 | /var/cfengine/bin/cf-agent --bootstrap cf.civ.zcu.cz | |
|
19 | /var/cfengine/bin/cf-agent -Kf update.cf -D FORCE_update | |
|
20 | /var/cfengine/bin/cf-agent -Kf update.cf -D FORCE_update | |
|
21 | fi | |
|
22 | ||
|
14 | 23 | exit 0 |
@@ -1,7 +1,7 | |||
|
1 | 1 | logger -t "rc.firstboot" "Creating /etc/resolv.conf symlink" |
|
2 | 2 | |
|
3 | 3 | # Check if systemd resolve directory exists |
|
4 | if [ ! -d "/run/systemd/resolve" ] ; then | |
|
4 | if [ ! -d "/run/systemd/resolve" -a ! -e "/etc/resolv.conf" ] ; then | |
|
5 | 5 | systemctl enable systemd-resolved.service |
|
6 | 6 | systemctl restart systemd-resolved.service |
|
7 | 7 | fi |
@@ -11,5 +11,8 if [ ! -f "/run/systemd/resolve/resolv.conf" ] ; then | |||
|
11 | 11 | touch /run/systemd/resolve/resolv.conf |
|
12 | 12 | fi |
|
13 | 13 | |
|
14 | # Create symlink to /etc/reolv.conf | |
|
14 | # Create symlink to /etc/reolv.conf if not exists yet | |
|
15 | if [ ! -e "/etc/resolv.conf" ] ; then | |
|
15 | 16 | ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf |
|
17 | fi | |
|
18 |
General Comments 0
Vous devez vous connecter pour laisser un commentaire.
Se connecter maintenant