2fb2c6e1ae
- Startup ping: fire heartbeat + health + hub report immediately on boot
(5s delay after scheduler start, instead of waiting 5-15 min for first tick)
- Storage init wizard: new internal/storage/ package with disk scanning
(lsblk -J), format+mount pipeline (sfdisk → mkfs.ext4 → blkid → fstab →
mount → chown), safety guards (system disk detection, confirmation "FORMÁZÁS"),
progress channel, auto-register in settings.json
- Data migration: MigrateAppData() with rsync --info=progress2 progress parsing,
stop/rsync/update-config/start flow, rollback on failure, old data preserved
- New pages: /settings/storage/init (wizard), /stacks/{name}/migrate (migration)
- New API routes: /api/storage/{scan,init,init/status,migrate,migrate/status}
- Deploy page: storage info section for deployed apps (path, size, free, migrate link)
- Settings page: "Mozgatás" button per app in storage path details
- Container: privileged: true, /dev:/dev, /etc/fstab:/host-fstab, /run/udev:/run/udev:ro
- Dockerfile: add util-linux, e2fsprogs, rsync, parted for disk ops
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
794 B
Go
28 lines
794 B
Go
package storage
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
)
|
|
|
|
// mountNameRe validates mount names: only alphanumeric + underscore.
|
|
var mountNameRe = regexp.MustCompile(`^[a-zA-Z0-9_]+$`)
|
|
|
|
// FstabPath is the path to the host fstab inside the container.
|
|
// The compose file mounts /etc/fstab → /host-fstab.
|
|
const FstabPath = "/host-fstab"
|
|
|
|
// ValidateMountName returns an error if the mount name is invalid.
|
|
func ValidateMountName(name string) error {
|
|
if name == "" {
|
|
return fmt.Errorf("a csatlakoztatási névnek nem szabad üresnek lennie")
|
|
}
|
|
if !mountNameRe.MatchString(name) {
|
|
return fmt.Errorf("a csatlakoztatási néven csak betűk, számok és alávonás megengedett")
|
|
}
|
|
if len(name) > 32 {
|
|
return fmt.Errorf("a csatlakoztatási néven legfeljebb 32 karakter megengedett")
|
|
}
|
|
return nil
|
|
}
|