That happened because you tried to quote my entire post. You need to edit when responding, and break apart any instructions or questions, so that they are quoted separately, with your responses outside those quoted sections.
Anyway, I think that this is the service responsible for rfkill status
systemd-rfkill@rfkill0.service loaded active exited Load/Save RF Kill Switch Status of rfkill0
I haven’t had any experience with systemd-rfkill, but from reading the man-page
KERNEL COMMAND LINE top
systemd-rfkill understands the following kernel command line
parameter:
systemd.restore_state=
Takes a boolean argument. Defaults to "1". If "0", does not
restore the rfkill settings on boot. However, settings will still
be stored on shutdown.
it is possible to restore the saved state (from boot) with
systemd-rfkill systemd.restore_state=1
Obviously, you’d want to make sure that the wifi was unblocked before shutting down though, so that hopefully, it boots up with the same wifi status. (I can’t test this, as I’m not using openSUSE 13.2)
Alternatively, it can be prevented from doing anything with
systemctl mask systemd-rfkill@rfkill1.service
or perhaps prevent it from restoring the rfkill state at boot with
systemd-rfkill systemd.restore_state=0
Then reboot.