mirror of
https://github.com/etlegacy/etlegacy-snap.git
synced 2024-11-25 21:31:41 +00:00
11 lines
196 B
Bash
11 lines
196 B
Bash
#!/bin/sh
|
|
set -x
|
|
|
|
if [ "$(snapctl get daemon)" = "" ]
|
|
then
|
|
if grep -q -e snap_core= -e snapd_recovery_mode= /proc/cmdline
|
|
then snapctl set daemon=true
|
|
else snapctl set daemon=false
|
|
fi
|
|
fi
|
|
|